/* IMPORTS */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

/* ANIMATIONS */

@keyframes hover-text-anim {
    0% {
        transform: translateY(5vh);
    }

    50% {
        transform: translateY(15vh);
    }

    100% {
        transform: translateY(5vh);
    }
}

/* STYLESETS */

html {
    scroll-behavior: smooth;
}

.hover-anim {
    display: inline-block;
    animation: hover-text-anim 10s ease-in-out infinite;
}

button.cta {
    padding: 0.5em 1em;
    margin: auto 0.5em;
    background-color: white;
    border-color: rgb(218, 218, 218);
    border-style: solid;
    border-radius: 1em;
    font-size: 2vh;
    font-family: "Quicksand", sans-serif;
    cursor: pointer;
}

#button-bar {
    position: sticky;
    top: 0em;
    background-color: rgb(24, 24, 24);
    padding: 1em 0em;
}

a.hide-link {
    color: black;
    text-decoration: none;
}

.space-upwards {
    position: relative;
    top: -4.5em;
}


project-title,
h1,
h2,
h0,
h-1 {
    font-family: "Bebas Neue", sans-serif;
}

project-title {
    font-size: 3rem;
}

h0 {
    font-size: 15vw;
}

h-1 {
    font-size: 5vw;
}

h2 {
    font-size: 5rem;
}

h1 {
    font-size: 4vw;
}

p {
    font-family: "Quicksand", sans-serif;
}

body {
    margin: 0;
}

div.about-me-body {
    background-color: rgb(37, 37, 37);
    padding: 1em 3em;
    max-width: 50vw;
    border-radius: 3rem;
    color: white;
}

div.project-holder,
div.landing {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

div#button-container {
    display: flex;
    justify-content: center;
}

div.landing {
    height: 75vh;
    background-color: rgb(24, 24, 24);
    color: white;
}

div.landing2 {
    height: 25vh;
    background-color: rgb(24, 24, 24);
    color: white;
}

div.project-outer {
    background-color: rgb(218, 218, 218);
    padding: 10px;
    margin-bottom: 2rem;
    align-content: center;
    max-width: min(70vw, 50rem);
    width: 90%;
    padding: 2rem;
}

div.project-top {
    flex-direction: column;
    align-content: center;
    align-items: center;
}

div.project-image {
    background-size: min(50rem, 90vw);
    min-height: min(30rem, 60vw);
    background-repeat: no-repeat;
    background-position: center;
}

div.project-middle {
    font-size: 1.5rem;
}

div.project-middle,
platform,
date {
    font-family: "Quicksand", sans-serif;
}

date {
    text-align: end;
}

div.project-bottom {
    display: flex;
    justify-content: space-between;
}