@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: 0;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

img {
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

#app {
    min-height: 100vh;
    max-height: 100vh;
    height: 100%;
    width: 100%;
    background: url(../img/bg.jpg) no-repeat center /cover;
    overflow: hidden;
    gap: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.column {
    max-width: calc(30% - 25px);
    width: 100%;
    align-items: flex-end;
    height: 100vh;
    display: flex;
    z-index: 5;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    height: 100vh;
    padding: 50px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.logo img {
    max-width: 300px;
}

.logo p {
    text-transform: uppercase;
    font-size: 30px;
    color: #ffd4ce;
    font-weight: 800;
}

.links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 15;
}

.link {
    max-width: calc(25% - 15px);
    transition: .1s ease-in;
    box-shadow: 0 22px 57px 15px rgba(39, 2, 49, 0.9);
    border-radius: 20px;
}

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

.copyright {
    color: white;
    margin-top: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    stroke-width: 2px;
    -webkit-text-stroke: 1px 1px 1px 4px #000000;
}

@media (max-width: 1024px) {
    .column {
        max-width: 230px;
        width: 100%;
        position: absolute;
    }
    .column:first-child {
        bottom: 0px;
        left: 0px;
    }
    .column:last-child {
        bottom: 0px;
        right: 0px;
    }

    .content {
        max-width: 50%;
        width: 100%;
        margin: 0 auto;
    }

    .logo p {
        font-size: 26px;
    }

    .link {
        max-width: 30%;
    }
}

@media (max-width: 920px) {

    .content {
        max-width: 50%;
        width: 100%;
    }
    .logo p {
        font-size: 22px;
    }
}
@media (max-width: 850px) {

}
@media (max-width: 768px) {
    .content {
        max-width: 100%;
    }

    .column {
        position: absolute;
        align-items: flex-start;
        max-width: 180px;
    }

    .column:first-child {
        left: 12%;
        top: 9%;
    }

    .column:last-child {
        right: 12%;
        top: 9%;
    }

    .link {
        max-width: 20%;
    }
}

@media (max-width: 576px) {
    .column {
        position: absolute;
        max-width: 32%;
        align-items: flex-start;
    }

    .column:first-child {
        left: 4%;
        top: 8%;
    }

    .column:last-child {
        right: 4%;
        top: 8%;
    }
}

@media (max-width: 480px) {
    .logo p {
        font-size: 25px;
    }

    .column {
        position: absolute;
        max-width: 38%;
        align-items: flex-start;
    }

    .column:first-child {
        left: 4%;
        top: 9%;
    }

    .column:last-child {
        right: 4%;
        top: 9%;
    }
    .link {
        max-width: 25%;
    }
}

@media (max-width: 420px) {
    body {
        overflow: auto;
    }

    #app {
        overflow: auto;
        max-height: -webkit-fill-available;
    }

    .content {
        height: -webkit-fill-available;
    }

    .logo {
        max-width: 50%;
    }

    .links {
        flex-direction: column;
    }

    .link {
        max-width: 160px;
    }

    .logo p {
        font-size: 15px;
    }
}