body.home {
    display: grid;
    grid-template-columns: 1fr;
}

body.home a {
    text-decoration: none;
    color: rgb(232, 231, 226);
    background-color: rgb(3, 3, 59);
    height: 20vh;
    font-size: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease-in;
}

body.home a:hover {
    background-color: rgb(231, 225, 173);
    color: gray;
    transition: 0.2s ease-in;

}

body.home {
    margin: 0;
}

nav{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(3, 3, 59);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 50px;
}

nav a{
    color: rgb(238, 235, 235);
    text-decoration: none;
    font-size: 20px;
    display: flex;
    padding: 0.5em;
    justify-content: center;
    align-items: center;
}

nav a:hover{
    background-color: rgb(231, 225, 173);
    transition: 0.2s ease-in;
}

a.prev{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

a.next{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.variation-group {
    margin: 2em 0;
    padding: 1em;
    border: 2px solid rgb(3, 3, 59);
    border-radius: 8px;
    background-color: rgb(245, 245, 245); 
}

.variation-group h2 {
    margin: 0 0 0.5em;
    font-size: 24px;
    color: rgb(3, 3, 59);
}

.variation-group p {
    margin: 0 0 1em;
    font-size: 16px;
    color: #555;
}

