body {
    background-image: url(swim_bg.jpg);
    background-position: center;
    background-repeat: repeat;
    /* background-size: cover; */
}

/* LAYOUT */

.container {
    display: grid;
    grid-template-areas:
        'fiona interests games'
        'picture interests games'
        'picture interests contact'
    ;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: mediumpurple;
    margin: auto;
    height: 75%;
    width: 75%;
    border: 3px solid dodgerblue;
    padding: 15px;
    gap: 15px;
}

.container>div {
    background-color: lightblue;
    font: 1em "Barriecito", sans-serif;
    border: 3px solid dodgerblue;
    padding: 5px;
    text-align: center;
}

.fiona {
    grid-area: fiona;
}

.picture {
    grid-area: picture;
}

.picture>img {
    width: 50px;
    height: 100px;
    object-fit: cover;
    background-color: mediumpurple;
    border: solid 2px dodgerblue;
    margin: 5px;
    padding: 5px;
}

#portraitOreient {
    border-color: #ff1d15;
        color: white;
        width: 100px;
        height: 200px;
        object-fit: cover;
        font-size: 1.1em;
        box-shadow: 0 0.5em 0.5em -0.4em #ff1d15;
        transition: .5s;

}

img:hover {
    border-color: #ff1d15;
    color: white;
    width: 100px;
    height: 200px;
    object-fit: cover;
    font-size: 1.1em;
    box-shadow: 0 0.5em 0.5em -0.4em #ff1d15;
    transition: .5s;
}

.interests {
    grid-area: interests;
}

.games {
    grid-area: games;
}

#contact {
    grid-area: contact;
}

/* OTHER */
#banner {
    /* position: fixed;
    top: 10%;
    left: 10%;
    transform: translate(-10%,-10%); */
    text-align: center;
    color: dodgerblue;
    font: bold 100px "Barriecito", sans-serif;
    margin: 10px 0 10px 0;
}

#timeP {
    display: block;
    margin: 10px auto 10px auto;
}

img {
    border: 2px solid dodgerblue;
    width: 20%;
    height: auto;
}

button {
    border: 2px solid dodgerblue;
    border-radius: 10px;
    background-color: mediumpurple;
    color: dodgerblue;
    font-family: "Barriecito", sans-serif;
    font-size: 1em;
    font-weight: bolder;
    padding: 1em 2em;
    margin: 3%;
    align-content: center;
}

button:hover {
    border-color: #ff1d15;
    color: white;
    font-size: 1.1em;
    box-shadow: 0 0.5em 0.5em -0.4em #ff1d15;
    transition: .5s;
}

#email-link {
    text-decoration: none;
    color: inherit;
}

/* SPIRIT ANIMAL GAME STYLING */

div.spirit {
    background: mediumpurple;
    text-align: center;
    margin: auto;
    padding: 10px;
    width: 90%;
    border: 2px solid dodgerblue;
}

h1.spirit {
    text-align: center;
    padding: 2px;
    font-weight: bold;
    /* font-family: Marker Felt, fantasy; */
    font-stretch: ultra-condensed;
    font-weight: 600;
}

button.spirit {
    background-color: dodgerblue;
    border: none;
    color: white;
    padding: 20px 32px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
}

label {
    text-align: left;
}

#Q2,
#Q3,
#Q4,
#Q5 {
    display: none;
    align-items: center;
    margin: auto;
}