@charset "utf-8";
@import "reset.css";
@font-face {
    font-family: 'have heart';
    src: url('../font/Have\ Heart\ One.otf');
}

.hidden {
    display: none;
}

*{
    font-family: 'Courier New', Courier, monospace;
    box-sizing: border-box;
}

body {
    /* color: rgb(252 139 145); */
    font-family:'Courier New', Courier, monospace;
    color: black;
    font-weight: 500;
    width: 100%;
    height: 80vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0, auto;
    overflow: hidden;
}

#flexContainer {
    width: 90%;
    height: 100%;
    margin: auto;
    margin-top: 50px;
}

.Container1,
.Container2 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

#flexContainer .Container1 div {
    text-align: center;
    width: 100%;
    height: 180px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.75);
}

.postit, .todoBox {
    text-align: center;
    width: 100%;
    height: 350px;
    background-color: rgba(255 ,255 ,165, 0.75);
    border-radius: 5px;
}

.postit {
    font-family: 'have heart';
    color: rgb(252 139 145);
    font-size: 80px;
    letter-spacing: 7px;
    transform: skew(0deg);
}

.postit div {
    border-bottom: 3px solid black;
}

.postFirstLine {
    font-family:'Courier New', Courier, monospace;
    font-size: 50px;
    padding-top: 15px;
    color: black;
    letter-spacing: -5px;
}

.postFirstLine span:first-child /*pin*/{
    position: absolute;
    top: -10px;
    left: -30px;
    transform: scaleX(-1);
    font-size: 80px;
}

#clockBox {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    letter-spacing: -5px;
    padding: 20px;
}

#weatherBox {
    display: flex;
    letter-spacing: -3px;
    padding: 20px;
} 

#weatherBox img {
    margin-top: -20px;
    width: 80px;
    height: 80px;
}

#weatherBox .city-tem {
    display: flex;
    align-items: flex-end;
    justify-content: left;
    font-size: 25px;
    text-align: left;
    letter-spacing: -2px;
    width: 100%;
}

#weatherBox .weather {
    justify-content: right;
    align-items: flex-start;
    font-size: 50px;
}

#quoteBox {
    padding: 20px;
    position: relative;
}

#quoteBox span:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    font-size: 25px;
    letter-spacing: -2px;
}

#quoteBox span:last-child {
    position: absolute;
    right: 30px;
    bottom: 30px;
    font-size: 25px;
    letter-spacing: -2px;
}

.todoBox {
    overflow: auto;
    text-align: center;
}

.todoBox::-webkit-scrollbar {
    display: none; /* 크롬, 사파리, 오페라, 엣지 */
}


.todoBox input {
    border: none;
    outline: none;
    background-color: transparent;
    width: 100%;
    padding-top: 7px;
    text-align: center;
    font-size: 50px;
    border-bottom: 3px solid black;
}

.todoBox li {
    font-size: 50px;
    padding: 5px;
    border-bottom: 3px solid black;
    text-align: right;
}


.todoBox button {
    font-size: 30px;
    background-color: transparent;
    border: none;
    outline: none;
}


.loginBox {
    display: flex;
    margin-bottom: 15px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90px;
    border-radius: 5px;
    background-color:rgba(255, 255, 255, 0.75);
}

#login, #greeting { 
    border-radius: 35px;
    font-size: 40px;
    text-align: center;
    width: 900px;
    height: 55px;
    padding: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
}

::placeholder {
    letter-spacing: -5px;
}

.pin {
    position: absolute;
    transform: scaleX(-1);
    font-size: 80px;
    margin-left: -30px;
    margin-top: -10px;
}