@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');



::-webkit-scrollbar{display:none;}
*{
    margin:0; 
    padding:0;
    border:0;
}

a{text-decoration: none;}


.body{
    width:100%;
    height:100%;
    font-family: "Noto Sans", sans-serif;

}

.title{
    position:fixed;
    z-index:999;
    white-space:nowrap;
    top:0.5rem;
    text-align: center;
    left:50%;
    transform: translate3d(-50%, 0px, 0px);
    display: block;
}


.name {
    background: none;
}

h1{

    font-family: "Noto Sans", sans-serif;
    color:black;
    font-weight:500;
    font-size:20px;
}

h2{

    font-family: "Noto Sans", sans-serif;
    font-weight:200;
    font-size:20px;
}

.start{
    background: none;
    height:2rem;
    width:30%;
    text-align: center;
    border-radius: 2rem;
    outline:none;
    margin:3px auto 0 auto;
    font-weight:400;
    font-size:20px;
    border: 2px solid black;
    cursor:pointer;
    margin-top:7px;

}

footer{
    display: flex;
}

.title > div { 

    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.start:hover{
    background-color: black;
    color:white;
}



.nav-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    display: none; /* 처음에는 숨김 */
    justify-content: space-around;
    align-items: center;
    padding: 1rem 0;
}

.nav-item {
    font-family: "Noto Sans", sans-serif;
    font-size:20px;
    font-weight:400;
    text-align: center;
    white-space: nowrap;
    padding: 0.5rem 1rem;
}


.me {
    position: fixed;
    z-index: 999;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    font-size: 60px;
    font-weight: 200;
    text-align: center;
}
