.contact {
    margin: 0;
    position: absolute;
    top: 300vh;
    height: 100vh;
    width: 100vw;
    background: url("../img/contact_back.jpeg") no-repeat;
    background-size: cover;
    color: white;
}

.contact-title {
    color: white;
    font-family: "Xirod", sans-serif;
    letter-spacing: 3px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    margin-top: 3vh;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 640px;
    padding: 16px 8px 0 8px;
}

.contact-links a {
    margin-top: 10%;
}

.icon {
    transition: 0.2s;
    width: 48px;
    will-change: filter;
}

.icon:hover {
    transform: scale(1.2);
}

