@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@200;300;400&display=swap');

*{
    margin : 0;
    padding : 0;
    box-sizing : border-box;
}

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

#wave_div {   
    width : 100%;
    height : 250px;
}
#wave_div img {
    transform : rotate(180deg);
    width : 100%;
    height : 100%;
}
#main_content {
    display : flex;
    width : 350px;
    min-height : 100px;
    flex-direction: column;
    margin : auto;
}
#main_heading {
    font-family: 'Righteous', cursive;
    display : flex;
    font-size : 46px;
    align-self: center;
}
#main_content p {
    align-self : center;   
    font-family: 'Sarabun', sans-serif;
    font-weight: 300;
}
#main_content p:nth-of-type(1){
    font-size : 19px;
}
#main_content p:nth-of-type(2){
    font-size : 12px;
}
#name {
    margin-top : 30px;
    margin-left : 30px;
    height : 40px;
    width : 170px;
    border-radius: 3px;
    border : none;
    outline : none;
    background : #e5e5e5;
    text-indent : 15px;
    font-family : 'Sarabun',sans-serif;
    font-size : 15px;
}
#submit_btn {
    width : 120px;
    height : 40px;
    outline : none;
    border : none;
    background : #ff7d00;
    border-radius: 3px;
    color : #ffffff;
    font-family : 'Sarabun',sans-serif;
    cursor : pointer;
    letter-spacing: 0.02em;
    font-size: 15px;
    margin-left : 5px;
    transition : 0.3s ease-in-out;
}
#submit_btn:hover {
    background : #e67002;
}
