@import url(https://fonts.bunny.net/css?family=pixelify-sans:400,500,600,700);

*{
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    text-decoration: none;
    position: relative;
    box-sizing: border-box;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Pixelify Sans', display;

    h1{
        font-size: 40px;

        @media (max-width: 768px){
            display: none;
        }
    }
    h2{
        font-size: 24px;

        @media (max-width: 425px){
            font-size: 18px;
        }
    }
}

.content-limit{
    width: 100%;
    max-width: 1920px;
}

header{
    display: flex;
    justify-content: center;
    background: #E3350D;
    height: 144px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;

    .header-content{
        display: flex;
        justify-content: space-between;
        align-items: center;

        @media (max-width: 425px){
            flex-direction: column;
            justify-content: left;
            align-items: center;
        }

        #logo-area{
        width: 50%;
        height: 144px;
        display: flex;
        align-items: center;

        @media (max-width: 425px){
            width: 100%;
            height: 50%;
            justify-content: center;
        }

            img{
                height: 75%;
                width: auto;
                margin-right: 16px;

                @media (max-width: 1024px){
                    height: 50%;
                }
                @media (max-width: 425px){
                    height: 37px;
                    width: 37px;
                    margin-right: 0;
                }
            }
        }
        #input-area{
            display: flex;
            flex-direction: column;

            input{
                font-size: 18px;
                padding: 4px;
                padding-left: 8px;
                border: solid 4px #FFCB05;
                border-radius: 4px;

                @media (max-width: 216px){
                    width: 100%;
                }
            }
            input::placeholder{
                font-style: italic;
            }
        }
    }
}

footer {
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    background: #2A75BB;
    height: 144px;
    width: 100%; 
    color: white;
    font-size: 18px;
    text-align: center;
}

main{
    min-height: calc(100dvh - 288px);
    width: 100%;
    background: url(./background.png);
    image-rendering: pixelated;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;

}