/*
 * Google Fonts
 */
 @font-face {
    font-family: 'Abril Fatface';
    src: url('../fonts/Abril_Fatface/AbrilFatface-Regular.ttf');
}

@font-face {
    font-family: 'DM Sans Regular';
    src: url('../fonts/DM_Sans/DMSans-Regular.ttf');
}

@font-face {
    font-family: 'DM Sans Medium';
    src: url('../fonts/DM_Sans/DMSans-Medium.ttf');
}

:root {
    --black: #202020;
    --darkgrey: #3F3F3F;
    --lightgrey: #707070;
    --lightgrey2: #D1D1D1;
    --yellow: #FFC031;
    --yellow2: #FFDF6C;
    --white: #FFF;
    --instagram: #ED4F67;
    --linkedinblue: #0D65C2;
}

/*
 * Style
 */

* {
    margin: 0;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'DM Sans Regular', sans-serif;
}

/*
 * Easter Egg
 */

.easter__egg {
    position: fixed;
    bottom: -283px;
    right: 80px;
    width: 275px;
    height: 183px;
}

.easter__egg > img {
    width: 275px;
}

.eyes__animation {
    width: 50px;
    position: absolute;
    top: 47px;
    left: 100px;
}

.eye {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    height: 13px;
    width: 13px;
    background: #FFF;
}

.eye:nth-child(2) {
    left: 2px;
}

.eye:after { /*pupil*/
    position: absolute;
    bottom: 7px;
    right: 3px;
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    content: " ";
}

@media screen and (max-width: 500px) {
    .easter__egg > div {
        right: 10px;
    }
}