@charset "UTF-8";

html{
    font-size: 62.5%;
}

body{
    font-size: 1.6rem;
    font-family: Arial, Helvetica, sans-serif;
    background-image: url(ichiyo_mv.png);
    background-size: cover;
}

img{
    max-width: 100%;
}

a{
    text-decoration: none;
}

/*header*/

#header{
    height: 10vh;
    display: flex;
    align-items: center;
}

#header img{
    width: 300px;
}

/*main*/

main{
    height: 80vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: beige;
    padding: 20px 4%;
    border-radius: 10px;
    box-shadow: 2px 2px 4px gray;
    width: fit-content;
    max-width: 80vw;
}

#content h1{
    font-size: 3rem;
    line-height: 50px;
    margin-bottom: 20px;
}

#content p{
    font-size: 2rem;
    line-height: 35px;
    margin-bottom: 10px;
}

#content .button{
    width: fit-content;
    border: solid brown 1px;
    text-align: center;
    margin: 10px auto;
    padding: 15px 20px;
    background-color: brown;
    border-radius: 10px;
    transition: background-color 0.3s,  border-color 0.3s;
}

 #content .button:hover{
    background-color: white;
    border-color: brown;
}

#content a{
    color: white;
    transition: color 0.3s;
}

#content a:hover{
    color: brown;
}

/*footer*/

#footer{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 10vh;
}

#footer img{
    width: 200px;
    margin: 0 10px;
}

@media screen and (max-width: 375px) {
    #header{
        height: fit-content;
    }

    main{
        height: fit-content;
    }

    #footer{
        height: fit-content;
    }
}

@media screen and (max-height: 660px) {
    #header{
        height: fit-content;
    }

    main{
        height: fit-content;
    }

    #footer{
        height: fit-content;
    }
}
