body {
    width: 100%;
    height: 100%;
}

main {
    background: linear-gradient(to bottom, rgb(37, 37, 37, 0.9) 5%, transparent), url(/backgrounds/contacts.png) center / cover no-repeat border-box;
    width: 100%;
    height: 50rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact_us {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 0 0;
}

.border {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(28, 28, 28, 0.4);
    /* backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px); */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    padding: 2rem;
    margin: 1rem 0 1rem 0;
}

.border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
}

.border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.8),
            transparent,
            rgba(255, 255, 255, 0.3));

}

.links {
    color: white;
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 1rem 0;
}

.links:hover,
.link:active {
    color: #48d2c2;
}

h1 {
    color: white;
    font-size: 40px;
}

.logo-contact {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.ausma {
    height: 10rem;
    width: 10rem;
    margin: 0 0 1rem 0;
}

.v-i {
    margin: 1rem 1rem 1rem 1rem;
    height: 6rem;
    width: 6rem;
}

@media (min-width: 768px) {
    main {
        height: 80rem;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }

    .border {
        width: 26rem;
        height: 37rem;
        margin: 1rem 0 0 2rem;
    }

}


@media (min-width: 1100px) {
    main {
        background: linear-gradient(to right, rgb(37, 37, 37, 0.9) 5%, transparent), url(/backgrounds/contacts.png) center / cover no-repeat border-box;
        height: 100%;
        margin: 0;
    }

    .border {
        width: 26rem;
        height: 37rem;
        margin: 2.5rem 0 0 5rem;
    }
}

@media (min-width: 2400px) {

    main {
        width: 80%;
        max-width: 1750px;
        margin-left: auto;
        margin-right: auto;
    }


}