body {
    margin: 0;
    padding: 0;
    font-family: "Gotham";
    /*-webkit-font-smoothing: antialiased;*/
    background-color: #DEDEDE;
    color: black;
}
a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}
*, :after, :before {
    box-sizing: border-box;
    margin: 0;
}
h1 {
    /*font-size: 6vw;*/
    font-size: clamp(40px, 5.5vw, 128px);
    line-height: 1em;
    margin-bottom: 24px;
}
p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.4em;
}
.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    position: absolute;
    padding: 5%;
    align-items: center;
    z-index: 1;
}
.col {
    width: 37%;
}
.bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    /*min-height: 600px;*/
    height: 100vh;
    /*max-height: 800px;*/
    background-image: url("../img/alina-horizontal.png");
    background-repeat: no-repeat;
    /*background-position: center;*/
    background-position: 40% 50%;
    background-size: cover;
    z-index: 0;
}
.social {
    display: inline-flex;
    gap: 8px;
    width: 100%;
    flex-wrap: wrap;
}
.social > * {
    height: 24px;
    margin-right: 8px;
    /*margin-bottom: 16px;*/
    display: inline-block;
}
.social > * > * {
    width: 24px;
    height: 24px;
}
.link {
    vertical-align: text-bottom;
    line-height: 1.6em;
}

@media (max-width: 1201px) {
    body {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .link {
        font-size: 16px;
    }
    p {
        font-size: 16px;
    }
    .container {
        position: relative;
        align-items: flex-start;
        min-height: auto;
        padding-bottom: 0;
    }
    .bg {
        position: relative;
        background-position: 50% 50%;
        height: 70vh;
        margin-top: -17vh;
    }
    .col {
        width: 100%;
    }
}

@media (max-width: 991px) {

}

@media (max-width: 767px) {

}

@media (max-width: 479px) {

}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
