header>div{
    background-color: rgba(255, 255, 255, 0.637);
    padding: 20px;
    margin: 10px;
    text-align: center;
    border-right: 3px solid black;
    border-bottom: 5px solid black;
    border-left: 3px solid black;
}

div{
    height: 80px;
    overflow: hidden;
    transition: 1 ease;
    transition-duration: 1s;
    width: 100%;
    justify-self: center;
}

header{
    position: fixed;
    margin-top: -20px;
    z-index: 1000;
    width: 50%;
    margin-left: 24.5%;
    margin-right: 24.5%;
}

div:hover{
    height: 220px;
    transition: 0.5s ease;
    transition-duration: 0.5s;
    background-color: rgba(243, 243, 243, 0.928);
}

body{   
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-size: cover;
    padding-bottom: 10px;
}

#homebody{
    background: url(homepagebackground.webp);
    background-size: cover;
}

body, html{
    height: 115%;
}

main{
    margin: 20px;
}

p{
    margin: 50px;
    font-size: 27px;
    background-color: rgba(255, 255, 255, 0.313);
    padding: 20px;
    border-radius: 7px;
    color: white;
    line-height: 40px;
}

#halloweenp{
    margin: 50px;
    font-size: 27px;
    background-color: rgba(183, 0, 255, 0.313);
    padding: 20px;
    border-radius: 7px;
    color: rgb(195, 255, 0);
    line-height: 40px;
}

#christmasp{
    color: rgb(109, 255, 163);
    background-color: rgba(128, 0, 0, 0.575);
}

#easterp{
    background-color: rgba(184, 255, 97, 0.403);
    color: rgb(255, 255, 255);
}

img{
    display: block;
    margin: auto;
    margin-top: 20px;
    width: 50%;
    border: black solid 2px;
    transition: 2s ease;
    max-width: 600px;
}

img:active{
    width: 600px;
    display: block;
}


figcaption{
    text-align: center;
    color: white;
}

a{
    padding: 4px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 20px;
}

#homebutton{
    background-color: rgb(0, 0, 0);
    color: white;
}

#christmasbutton{
    background-color: maroon;
    color: lightgreen;
}

#halloweenbutton{
    background-color: purple;
    color: rgb(255, 128, 0);
}

#easterbutton{
    background-color: rgb(255, 123, 145);
    color: rgb(255, 222, 132);
}