@import "variables.css";
@import url('http://fonts.googleapis.com/earlyaccess/nanumgothic.css');

body {        
    background-color: var(--default-background-color);
    font-family: nanumgothic;
    padding: 0;
    margin: 0;
}

.main-background {
    display: flex;
    flex-direction: column;

    background-image: url("../img/default.png");
    background-repeat : no-repeat;
    background-position: center;
    background-size: cover;
    justify-content: space-between;
    
    width: 100%;
    min-height: 100vh;    
}

.blind {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

#top_banner {
    color: aliceblue;
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    
    font-size: 20px;
    font-weight: 500;
}

#top_banner > h3 {
    text-align: center;
    margin: 0;
    padding: 0;
}

#weather {
    display: flex;
    flex-direction: column;
    text-align: right;
}


#login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60vh;
    margin: 0;
    gap: 20px;
}

#login-form > h1 {
    color: whitesmoke;
    font-size: 80px;
    margin: 0;
    border: 0;
}

#login-form__input {
    display: flex;
    gap: 10px;
}

#login-form__input > #submit {    
    width: 70px;
    height: 32px;
    font-size: 15px;
    border: 0;
    border-radius: 17px;
    background-color: rgb(245, 245, 200);
}

#login-form__input > #name {
    width: 300px;
    height: 32px;
    font-size: 15px;
    border: 0;
    border-radius: 17px;
    padding-left: 15px;
    background-color: rgb(233, 233, 233);
}

#checklist {
    display: flex;
    justify-content: space-around;
    padding-top: 50px;
    padding-bottom: 3%;
    padding-left: 3%;
    padding-right: 3%;

}

#checklist > div {
    background-color:#77777777;
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 2%;
    padding-bottom: 20%;
    border-radius: 20px;
    border: 0;

    box-shadow: 
    0 0 1px #fff,
    0 0 4px #eff;
}

#checklist div.mini-title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color :whitesmoke;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    padding-bottom: 30px;
}

#checklist #wokr-form {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 5px
}

#checklist #wokr-form > #submit {    
    width: 50px;
    height: 32px;
    font-size: 15px;
    border: 0;
    border-radius: 15px;
    background-color: rgb(245, 245, 200);
}

#checklist #wokr-form > #name {
    width: 70%;
    height: 32px;
    font-size: 15px;
    border: 0;
    border-radius: 15px;
    padding-left: 15px;
    background-color: rgb(233, 233, 233);
}

#checklist ul {
    color: aliceblue;
}

#checklist .close_btn {
    padding-left: 3px;
    background-color: transparent;
    border: 0;
    font-size:18px;
}

.quotes {
    color: azure;
    text-align: center;
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 70px;
}

.quotes #quote {
    font-weight: 700;
}

