body {
    margin: 0;
    max-width: 100% !important;
    overflow-x: hidden !important;
    background-color: #1e212b;
    font-family: "Poppins", sans-serif;
}

#background {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.logo--container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: auto;
    max-width: 80%;
    text-align: center;
}

.logo--container > svg {
    width: 100%;
    height: auto;
    display: block;
}

.mail-button {
    position: absolute;
    right: 5%;
    bottom: 10%;
    color: #d3d3d3;
    font-size: 2rem;
    text-decoration: none;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon--mail {
    height: 2rem;
    width: auto;
    margin-right: 1rem;
}

@media screen and (max-width: 640px) {
    .mail-button {
        right: 50%;
        bottom: 10%;
        transform: translateX(50%);
    }
}