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

body {
    background-color: #b66464;
    color: #863131;
    font-size: 22px;
    line-height: 44px;
    text-align: center;
}

#panel {
    padding-top: 25%;
    text-align: center;
    position: fixed;
    z-index: 10;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(37, 0, 0);
    transition: all 0.5s ease-in-out;
    /* 3d stuff*/
    transform-style: preserve-3d;
}

.slide-up {
    transform: translateY(-50%) rotateX(80deg);
}

h1 {
    text-align: center;
    margin-top: 300px;
    margin-bottom: 70px;
    font-family: "Barrio", system-ui;
    font-weight: 400;
    font-style: normal;
}

a {
    color: #863131;
    font-size: 50px;
    /*font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;*/
    display: inline-block;
    text-shadow: 2px 2px 1px #000;
    text-decoration: none;
    font-family: "Ranchers", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 8px;
    letter-spacing: 3px;
}

a:hover {
    background-color:#2f0808;
}

p {
    text-align: center;
    padding-top: 20px;
}

#goose {
    display: inline-block;
    margin-top: 60px;
    margin-bottom: 60px;
}

h2 {
    text-align: center;
    margin-top: 100px;
    text-align: center;
    margin-bottom: 70px;
    font-family: "Barrio", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    text-shadow: 2px 2px 1px #2f0808; 
}

#gallery {
    background-color: #d08686;
    display: grid;
    gap: 1.44rem;
}

@media screen and (min-width: 450px){

    #gallery{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 900px){

    #gallery{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

figure {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 40px;
    margin-inline-end: 40px;
    unicode-bidi: isolate;
}

figcaption {
    text-align: center;
    margin-bottom: 50px;
    font-family: "Barrio", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    text-shadow: 2px 2px 1px #2f0808;
}

div {
    font-family: "Ranchers", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 8px;
    letter-spacing: 3px;
    font-size: 60px;  
    text-shadow: 3px 3px 1px #601111;
}

h3 {
    font-size: 2em;
}

#game {
    padding: 10px 30px;
    font-size: 60px;
    background-color: #ece0cd;
    cursor: pointer;
    font-family: "Ranchers", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 8px;
    letter-spacing: 3px;
    color: rgb(152, 102, 150);
    text-shadow: 2px 2px 1px #3f0c43;
    text-align: center;
}

#game:hover {
    background-color: rgb(175, 166, 160);
}

.drawing {
    border-radius: 350px;
    border: 15px solid #2f0808;
    margin-left: auto;
    margin-right: auto;
}

button {
    margin-top: 70px;
    margin-bottom: 70px;
}