@import url("reset.css");
@import url("Modal.css");
@import url("Project.css");
@import url("Control.css");
@import url("ToDoList.css");

body{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

header,
.loginForm,
#profileInfo,
.menu{
    display: flex;
    align-items: center;
}

header{
    width:100%;
    height: 60px;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

main{
    width: 100%;
    height: 100%;
    display:flex;
}

aside{
    border-right: 1px solid black;
    width:20%;
    height: 100%;
    display:flex;
    flex-direction: column;
}

.mainSection{
    width: 80%;
    height: 100%;
    padding-top: 60px;
    background-color: rgba(128, 128, 128, 0.1);
    display:flex;
    flex-direction: column;
}

/* 좌측 로그인 영역 */

.loginForm,
#profileInfo{
    width:400px;
    margin-left: 10px;
    color: #e67e22;
    position: relative;
}

.loginForm > img,
#profileInfo > img{
    width: 30px;
    height: 30px;
    margin: 0 10px;
    border-radius: 50%;
}

.loginForm > button {
    cursor: pointer;
}
.loginForm > span {
    margin: 0 3px;
}
#profileInfo > span {
    padding-right: 8px;
}

#profileInfo > button {
    padding: 0 10px 7px 0;
}

/* 우측 Nav */
.menu{
    width: 200px;
    height: 30px;
    justify-content: space-evenly;
}

.menu > li {
    text-decoration: none;
    list-style: none;
}