@font-face {
    font-family: 'kyivtype sans';
    src: url('/kyivtype-regular') format('truetype');
}

body {
    background-color: #f0f0f0;
    font-family: 'kyivtype sans', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

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

.nav-bar {
    font-size: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 2.6vh 5vw;
    position: sticky;
    top: 0;
    z-index: 1000;

    a {
        color: white;
    }


    .nav-bar-right-element {
        display: flex;
        gap: 5vw;
    }

    .nav-bar-left-element {
        margin-right: auto;
    }
}

.presentation {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 97.5vh;
    background-color: #333;
    color: white;

    h1 {
        font-size: 5rem;
    }

    p {
        font-size: 2rem;
    }
}

.content {
    width: 80%;
    margin: 10%;
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 2rem;
    align-items: center;

    a {
        text-decoration: none;
        color: #000000;
        position: relative;
        font-size: 1.5rem;
    }

    a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        height: 2px;
        background-color: currentColor;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }

    a:hover::after {
        transform: scaleX(1);
        transform-origin: right;
    }


    h2 {
        font-size: 3rem;
    }

    p {
        font-size: 1.5rem;
    }
}

.credits {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    background-color: #333;
    color: white;
}
