.footer {
    position: absolute;
    background-color: rgb(20, 20, 20);
    width: 100vw;
    height: 25vh;
    top: 680vh;
}

.footer-title {
    user-select: none;
    width: 100%;
    height: 50px;
    font-size: 22px;
    text-align: center;
    margin-top: 30px;
    font-family: 'Montserrat';
    color: #fff;
}

.footer-wrapper {
    position: relative;
    display: flex;
    left: 50%;
    width: 50%;
    height: 80px;
    transform: translateX(-50%);
    overflow: hidden;
}

.footer-part {
    height: 100%;
    width: 50%;
    overflow: visible;
}

.footer-part p, .footer-part a {
    width: 100%;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

.footer-part a {
    display: block;
    text-decoration: none;
    color: #61C7EC
}

@media screen and (max-width: 720px) {
    .footer-title {
        margin-top: 10px;
    }

    .footer {
        top: 850vh;
    }

    .footer-wrapper {
        margin-top: -15px;
        width: 80%;
    }
}
