:root {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    --text-color: #fff;
    --text-color-hover: #E3E3DE;
    --instagram-gradient: radial-gradient(circle at 0% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

body {
    margin: 0;
    padding: 0;
}

body :link {
    text-decoration: none;
    color: var(--text-color);
}

body :link:hover {
    background: var(--instagram-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 {
    color: var(--text-color);
    cursor: default;
}

/*
.overlay {
    border-image: fill 1 
        linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
}
*/

.shadow {
    /*text-shadow: 3px 3px 8px black;*/
    filter: drop-shadow(3px 3px 8px black);
}

.main {
    height: 100dvh;
    width: 100dvw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.videobackground {
    min-height: 100dvh;
    min-width: 100dvw;
    position: fixed;
    background-color: #fdf497;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.4);
    height: 200dvh;
    width: 200dvw;
    position: fixed;
}

#me {
    width: 20vh;
    height: 20vh;
    min-height: 80px;
    min-width: 80px;
    background-image: url("./images/me.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    border: solid #fff 0.6vh;
    margin: 0 0 5vh 0;
}

/* ANIMATIONS */

.waving-hand {
    display: inline-block;
    animation: wave 2s infinite;
    transform-origin: 70% 70%;
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}