@font-face {
    font-family: 'Playtimes';
    src: url('../fonts/Playtimes.eot');
    src: url('../fonts/Playtimes.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Playtimes.woff2') format('woff2'),
         url('../fonts/Playtimes.woff') format('woff'),
         url('../fonts/Playtimes.ttf') format('truetype'),
         url('../fonts/Playtimes.svg#Playtimes') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swin;
}


:root {
    --content-padding: 15%;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Hanken Grotesk", Arial, Helvetica, sans-serif;
    font-size: 28px;
    height: 100vh;
    width: 100vw;
}

.page-title {
    text-transform: uppercase;
    text-align: center;
    align-content: center;
    font-weight: 400;
    font-size: 96px;
}

.blurb {
    max-width: 700px;
    text-align: center;
}

.flex {
    display: flex;
}

.flex--hr {
    flex-direction: row;
}

.flex--vr {
    flex-direction: column;
}

.flex--center {
    justify-content: center;
    align-items: center;
}

.flex--g-10px {
    gap: 10px;
}

.flex--g-20px {
    gap: 20px;
}

.flex--g-30px {
    gap: 30px;
}

.flex--g-40px {
    gap: 40px;
}

.flex--g-80px {
    gap: 80px;
}


.flex--justify-center {
    justify-content: center;
}

.flex--justify-around {
    justify-content: space-around;
}

.flex--justify-between {
    justify-content: space-between;
}

.flex--align-end {
    align-items: flex-end;
}

.pad--10px {
    padding: 10px;
}

.pad--20px {
    padding: 20px;
}

.pad--30px {
    padding: 30px;
}

.pad--40px {
    padding: 40px;
}

.divider {
    background-color: black;
}

.divider--vertical {
    width: 2px;
    height: 50px;
    align-self: center;
}

h1, h2 {
    font-family: playtimes;
    font-size: 96px;
    color: black;
    -webkit-text-stroke: 5px;
    -webkit-text-fill-color: white;
}

h2 {
    font-size: 45px;
    -webkit-text-stroke: 3px;
}

img {
    border-radius: 30px;
}

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

button {
    border: none;
    border-radius: 30px;
    padding: 20px 80px;
    background-color: lightgray;
    border-top: 7px solid;
    border-right: 20px solid;
    border-bottom: 20px solid;
    border-left: 7px solid;
    font-size: 2rem;
    cursor: pointer;
}

ul {
    list-style: none;
}

em {
    font-weight: 600;
    font-style: normal;
}

/* transitions */
nav, body, footer {
    transition: background-color 0.5s ease-in-out
}

/* animations */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}