body {
    font-family: 'Nunito Sans', sans-serif;
    background: url('/background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: space-between;
    height: 100vh;
    margin: 0;
}

.body {
    display: flex;
    width: 100%;
    height: 100%;
}

#left, #center, #right {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    justify-content: center;
}

#previousElements {
    width: 350px;
    min-height: 400px;
    border-radius: 20px;
    border: 5px solid rgba(50, 98, 14, 0.75);
    padding: 10px;
    background-color: rgba(245, 245, 220, 0.75);
    color: #32620e;
}

#previousElementLabel {
    width: 350px;
    padding: 5px;
    border-radius: 20px;
    font-size: 25px;
    border: 5px solid rgba(50, 98, 14, 0.75);
    padding: 5px;
    text-align: center;
    background-color: rgba(245, 245, 220, 0.75);
    color: #32620e;
}

#element {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    font-size: 35px;
    border: 5px solid rgba(50, 98, 14, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(245, 245, 220, 0.75);
    font-size: 28px;
    font-weight: bold;
    color: #32620e;
}

#elementLabel {
    border-radius: 20px;
    padding: 10px;
    font-size: 25px;
    border: 5px solid rgba(50, 98, 14, 0.75);
    padding: 5px;
    text-align: center;
    background-color: rgba(245, 245, 220, 0.75);
    color: #32620e;
}

.image-display {
    position: absolute;
    right: 10%;
    width: 30vw;
}

.image-display img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.button {
    width: 73px;
    height: 73px;
    border-radius: 51%;
    object-fit: cover;
    transition: filter 0.2s ease-in-out;
}

.button:hover {
    filter: brightness(70%);
}

.button:active {
    filter: brightness(130%);
}
#footer {
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: rgba(245, 245, 220, 0.75);
    color: rgba(50, 98, 14, 0.75);
    border-top: 5px solid rgba(50, 98, 14, 0.75);
    position: absolute;
    bottom: 0;
    left: 0;
}
a {
    color: #008000;
    text-decoration: none;
    transition: filter 0.2s ease-in-out, text-decoration 0.3s ease-in-out;
}

a:visited {
    color: #004d00;
}

a:hover {
    text-decoration: underline;
}

a:active {
    filter: brightness(130%);
}
