@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("Inter-Light.woff2") format("woff2");
}

:root {
    font-family: "Inter", sans-serif;
    line-height: 1.5;
    font-weight: 300;
    font-size: 1.2vw;
}

* {
    box-sizing: border-box;
}

body {
    min-width: 320px;
    background: #000;
    color: #fff;
    margin: 0;
    padding: 0 8vw;
}

main {
    height: 100vh;
    width: 100%;
    position: relative;
}

main .top {
    position: absolute;
    top: 3vw;
}

main .middle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

main .bottom {
    position: absolute;
    bottom: 3vw;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

p {
    margin: 0 0 15px;
}

p:last-child {
    margin-bottom: 0;
}

h1 {
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-size: 3.2vw;
}

.sub {
    margin-top: 2.8vw;
}

a {
    position: relative;
}

a:not(.no-a) {
    color: unset;
    border-bottom: 1px solid #8b8b8b;
    position: relative;
    text-decoration: none;
    padding-bottom: 2px;
}

a:not(.no-a):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 0;
    background-color: #fff;
    transition: width 0.3s ease-in-out;
}

a:hover:after {
    width: 100%;
}

:focus-visible {
    outline: unset;
}

:focus-visible:before {
    content: "";
    position: absolute;
    width: calc(100% + 8px);
    right: calc(0% - 4px);
    height: calc(100% + 8px);
    top: calc(0% - 4px);
    background-color: #ffffff20;
    outline: 1px solid #fff;
    border-radius: 3px;
    pointer-events: none;
}

svg {
    display: block;
}

.logo {
    width: 3.4vw;
}

.linkedin {
    width: 1.8vw;
}

@media (max-width: 1440px) {
    :root {
        font-size: 18px;
    }

    body {
        padding: 0 15px;
    }

    main {
        max-width: 1080px;
        margin: 0 auto;
    }

    main .top {
        top: 15px;
    }

    h1 {
        font-size: 4vw;
    }

    .sub {
        font-size: 1.8vw;
    }

    main .bottom {
        bottom: 15px;
    }

    .logo {
        width: 50px;
    }

    .linkedin {
        width: 28px;
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 4.7vw;
    }

    .sub {
        font-size: 2.2vw;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 5.2vw;
    }

    .sub {
        font-size: 3.3vw;
    }
}