html {
    height: 100vh;
    width: 100vw;
    background-color: rgb(255,95,0);
    transition: all 0.32s linear;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100%;
    height: 100%;
}

.menu_bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    height: 80px;
    background-color: black;
    margin-bottom: 10rem;
    box-shadow: 0px 0px 20px black;
}

button {
    background-color: transparent;
    border: 0;
    padding: 0;
    margin-left: 3rem;
    margin-right: 3rem;
}

/* 회원가입 아이콘*/

.join_container {
    display: flex;
    flex-flow: row wrap;
    position: relative;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    scale: 90%;
    margin-right: 8px;
    margin-top: 6px;
}

.person1 {
    position: absolute;
    display: flex;
    flex-flow: column wrap;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.person1_head {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: black;
    outline: 4px solid white;
}

.person1_body {
    width: 46px;
    height: 22px;
    border-radius: 25px 25px 0 0;
    background-color: black;
    outline: 4px solid white;
    margin: 6px;
}

.person2 {
    position: absolute;
    display: flex;
    flex-flow: column wrap;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
    margin-bottom: 16px;
    z-index: 0;
}

.person2_head {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: black;
    outline: 4px solid white;
}

.person2_body {
    width: 40px;
    height: 18px;
    border-radius: 23px 23px 0 0;
    background-color: black;
    outline: 4px solid white;
    margin: 6px;
}

#join_icon {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    transition: background-color 0.2s linear, transform 0.2s linear 0.12s, box-shadow 0.2s linear;
}

#join_icon:hover {
    transform: scale(120%);
    background-color: rgb(98,166,90);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.8);
}

/* 메인페이지 아이콘 */

.home_container {
    position: relative;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    scale: 110%;
}

.left_roof {
    width: 30px;
    height: 6px;
    background-color: black;
    outline: 4px solid white;
    border-radius: 2px 2px 2px 2px;
    transform: rotate(-45deg);
    position: absolute;
    bottom: 31px;
    right: 19px;
    z-index: 1;
}

.left_roof_shadow {
    width: 30px;
    height: 6px;
    background-color: black;
    border-radius: 2px 2px 2px 2px;
    transform: rotate(-45deg);
    position: absolute;
    bottom: 31px;
    right: 19px;
    z-index: 2;
}

.right_roof {
    width: 30px;
    height: 6px;
    background-color: black;
    outline: 4px solid white;
    border-radius: 2px 2px 2px 2px;
    transform: rotate(45deg);
    position: absolute;
    bottom: 31px;
    left: 19px;
    z-index: 1;
}

.top {
    border-top: 15px solid transparent;
    border-bottom: 15px solid black;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    position: absolute;
    bottom: 30px;
    z-index: 1;
}

.bottom {
    width: 30px;
    height: 20px;
    background-color: black;
    outline: 4px solid white;
    border-radius: 5px 5px 5px 5px;
    position: absolute;
    top: 27px;
    z-index: 0;
}

.bottom_shadow {
    width: 30px;
    height: 20px;
    background-color: black;
    position: absolute;
    top: 19px;
    z-index: 1;
}

.door {
    width: 8px;
    height: 14px;
    background-color: black;
    border-radius: 2px 2px 0 0;
    outline: 3px solid white;
    position: absolute;
    bottom: 3px;
    z-index: 2;
}

.chimney {
    width: 6px;
    height: 8px;
    outline: 4px solid white;
    background-color: black;
    border-radius: 1px 1px 0 0;
    position: absolute;
    top: 7px;
    left: 33px;
    z-index: 0;
}

#home_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    transition: background-color 0.2s linear, transform 0.2s linear 0.12s, box-shadow 0.2s linear;
}

#home_icon:hover {
    transform: scale(120%);
    background-color: rgb(255,95,0);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.8);
}

/* 게시판 아이콘 */

.write_container {
    display: flex;
    width: auto;
    height: auto;
    position: relative;
    scale: 70%;
    margin-top: 2px;
    margin-right: 2px;
}

.board {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    outline: 6px solid white;
    background-color: black;
    position: relative;
}


.pen {
    width: 40px;
    height: 10px;
    transform: rotate(-45deg);
    background-color: black;
    outline: 5px solid white;
    position: absolute;
    left: 35px;
    bottom: 40px;
    z-index: 1;
}

.tip {
    position: absolute;
    transform: rotate(-45deg);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid white;
    right: 21px;
    top: 31px;
}

#write_icon {
    display: flex;
    flex-flow: row wrap;
    width: 90px;
    height: 90px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background-color 0.2s linear, transform 0.2s linear 0.12s, box-shadow 0.2s linear;
}

#write_icon:hover {
    transform: scale(120%);
    background-color: rgb(255,165,0);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.8);
}

/* 로그인 아이콘 */

.login_container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    scale: 90%;
}

.arrow_body {
    position: absolute;
    width: 30px;
    height: 6px;
    border-radius: 3px 3px 3px 3px;
    outline: 4px solid white;
    background-color: black;
    right: 20px;
}

.arrow_body_shadow {
    position: absolute;
    width: 30px;
    height: 6px;
    border-radius: 3px 3px 3px 3px;
    background-color: black;
    right: 20px;
    z-index: 4;
}

.enter {
    width: 45px;
    height: 50px;
    border-radius: 5px 5px 5px 5px;
    background-color: black;
    outline: 5px solid white;
}

.arrow_head1 {
    position: absolute;
    width: 20px;
    height: 6px;
    border-radius: 3px 3px 3px 3px;
    outline: 4px solid white;
    background-color: black;
    transform: rotate(45deg);
    top: 17px;

}

.arrow_head1_shadow {
    position: absolute;
    width: 20px;
    height: 6px;
    background-color: black;
    transform: rotate(45deg);
    border-radius: 3px 3px 3px 3px;
    top: 17px;
    z-index: 1;
}

.arrow_head2 {
    position: absolute;
    width: 20px;
    height: 6px;
    border-radius: 3px 3px 3px 3px;
    outline: 4px solid white;
    background-color: black;
    transform: rotate(-45deg);
    bottom: 17px;
}

#login_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    transition: background-color 0.2s linear, transform 0.2s linear 0.12s, box-shadow 0.2s linear;
}

#login_icon:hover {
    transform: scale(120%);
    background-color: rgb(108,166,189);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.8);
}

/* 프로필 아이콘 */

.profile_container {
    display: flex;
    flex-flow: row wrap;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    scale: 110%;
}

.background {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    outline: 4px solid white;
    background-color: black;
}

.head {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    outline: 3px solid white;
    margin-top: 6px;
}

.body {
    width: 30px;
    height: 12px;
    border-top: 3px solid white;
    border-left: 3px solid white;
    border-right: 3px solid white;
    border-radius: 20px 20px 0 0;
    margin-top: 5px;
}

#profile_icon {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    transition: background-color 0.2s linear, transform 0.2s linear 0.12s, box-shadow 0.2s linear;
}

#profile_icon:hover {
    transform: scale(120%);
    background-color: rgb(75,117,229);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.8);
}