:root {
    --white: #F0F0F0;
    --black: #1A1A1A;
    --accent1: #79A27D;
    --accent2: #D29C5F;
    --accent3: #FFCE1F;
    --accent4: #7755EE;
}

body {
    font-family: "Libre baskerville", serif;
    background-color: #D3DFD3!important;
    color: var(--black);
}

.separator {
    margin: .5rem;
    border: 0;
    color: var(--black);
    border-top: 1px solid;
    opacity: 1;
}

.menu {
    position: fixed;
    bottom: 15px;
    right: 15px;
}

.menu > .dropdown-menu {
    width: calc(100vw - 30px);
}

@media (min-width: 768px) {
    .menu > .dropdown-menu {
        width: calc(100vw - 45px);
    }
}

@media (min-width: 992px) {
    .menu > .dropdown-menu {
        width: calc(100vw - 30px);
    }
}

.menu > button {
    border: 0;
    border-radius: 50%;
    background-color: var(--accent4);
    width: 40px;
    height: 40px;
}

.menu > button > svg {
    width: 30px;
    height: 30px;
}

.homeButton {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 100%;
    transition: transform 0.3s ease;
}

.homeButton:hover {
    transform: scale(1.05);
  }

.homeButton > div {    
    border-radius: 1rem;
    box-shadow: 0px 4px 4px #00000040;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 75%;
    position: relative;
    margin-bottom: 10px;
}

.homeButton > div > svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 75%;
    object-fit: contain;
}

.homeButton > label {
    color: var(--black);
    font-weight: 400;
    font-size: 1.10em;
    text-align: center;
    line-height: 1.2;
    width: 120%;
}