html {
    margin-top: 0 !important;
}

body {
    background-color: rgb(245, 245, 245);
}

main {
    background-color: white;
    margin: 0 5%;
    height: 150vh;
}

h1 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}

.entry_container {
    padding-top: 20%;
}

.logo_box {
    text-align: center;
}

.logo_box img {
    width: 34rem;
    height: 10rem;
}

.text_box {
    padding: 0 25%;
}

.line_entry_btn {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
}

.text {
    font-size: 1.5rem;
}

.text_small {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.entry_btn_box {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

.entry_btn {
    width: 25rem;
    border: 0.1rem solid rgb(230, 230, 230);
    padding: 2rem 4rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
    display: flex;
    justify-content: center;
    border-radius: 1rem;
    background-color: rgb(230, 230, 230);
}

@media screen and (max-width: 699.98px) {
    .logo_box{
        margin-bottom:2rem;
    }

    .logo_box img {
        width: 20rem;
        height: 5.9rem;
    }
    h1{
        font-size:2.6rem;
    }
    .text_box{
        padding:0 5%;
    }
    .text_box img{
        width:20rem;
    }
    .text{
        font-size:1.4rem;
    }
    .text_small{
        font-size:1.1rem;
    }
    .entry_btn{
        width:20rem;
        padding:1.8rem 3rem;
    }
}