@import url('https://fonts.googleapis.com/css2?family=Gowun+Dodum&display=swap');

body{
    margin: 0;
    padding: 0;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;

    /* font-family: 'Gowun Dodum', sans-serif; 
    */
    font-family: 'Black Han Sans', sans-serif;
    background-color:rgba(255, 228, 196, 0.524);
}

h1{
    margin : 5px;
}

.inputContainer{
    margin : 20px;
    width: 50%;
    display : flex;

    justify-content: center;
    flex-direction: column;
    align-items: center;

}
#nameBox{
    width: 10%;
}

#inputBox {
    width: 50%;
}
#saveButton{
    margin-top: 10px;
    width: 10%;
}

#container{
    width: 50%;
    display : flex;

    justify-content: center;
    flex-direction: column;
    align-items: center;
    /* background-color: black; */
}

#guestBook{
    /* width: 100%; */
    /* height: 100px; */
    margin: 10px;
    /* background-color: yellow; */
    width: 100px;
    height: 100px;
    background-color: yellow;
    padding: 20px;
    border: 2px solid black;
    border-radius: 10px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


#inputBox{
    display : flex;

    justify-content: center;
    flex-direction: column;
    align-items: center;

}

#delete{
    margin-bottom: 30px;
}

#name{
    margin-bottom : 20px;
    
    text-decoration: underline;
    /* text-decoration-color: rgb(255, 136, 0); */

}