@charset "utf-8";
/*
COLOR PALETTE:
Dark gray: rgb(20,20,20)
header gray: rgb(30,30,30)
footer gray: rgb(50,50,50)
orange: rgb(255,100,0)
*/

:root {
    --text-white: rgb(250, 250, 240);
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    background-color: rgb(20, 20, 20);
    background-image: url(../images/fractal.svg);
    background-size: auto;
    color: var(--text-white);
    font-family: 'Courier New', Courier, monospace;
}

body {
    font-size: 100%;
    font-weight: inherit;
    margin: 0px;
    padding: 0px;
    line-height: 1.2em;
    vertical-align: baseline;
    height: 95vh;
}

/*TITLE--------------------------------------*/
.home__title {
    display: flex;
    flex: 100%;
    justify-content: center;
    text-align: center;
    font-family: serif;
    font-weight: normal;
    font-size: 64px;
    text-decoration: none;
}

h3 {
    text-align: center;
    font-weight: normal;
    font-size: 16px;
    text-decoration: none;
}



hr {
    display: block;
    margin: 20px auto;
    width: 30%;
    height: 1px;
    background-color: var(--text-white);
    filter: url(#rgb-diffract)
}



/*NAVIGATION--------------------------------------*/
.nav {
    display: flex;
    align-items: center;
    justify-self: center;
    -webkit-backdrop-filter: url(#rgb-diffract) blur(1px);
    backdrop-filter: url(#rgb-diffract) blur(1px);
    width: 30%;
}


.nav__list {
    display: inline-block;
    margin: 0 auto;
}

.nav__item {
    padding: 15px;
    text-align: left;
}

.nav__link {
    animation-name: fadein;
    animation-duration: var(--an_time);
    animation-direction: normal;
    animation-timing-function: ease-in;
    animation-fill-mode: backwards;
    font-weight: normal;
    font-size: 16px;
    text-decoration: none;
    color: var(--text-white)
}

.nav__link:hover,
.nav__logo:hover {
    filter: url(#rgb-diffract);
}

@keyframes fadein {
    0% {
        color: transparent;
    }

    100% {
        color: var(--text-white)
    }
}

.nav__link--projects {
    animation-delay: 0s;
}

.nav__link--about {
    animation-delay: .5s;
}

.nav__link--contact {
    animation-delay: 1s;
}

.nav__link--privacy {
    animation-delay: 1.5s;
}

img {
    display: block;
    margin: 10vh auto 0;
}

/*PRIVACY POLICY--------------------------------------*/
.privacy {
    display: block;
    align-items: center;
    justify-self: center;
    -webkit-backdrop-filter: url(#rgb-diffract) blur(1px);
    backdrop-filter: url(#rgb-diffract) blur(1px);
    width: 30%;
    padding: 10px;
}

.privacy__title {
    margin: 0 20px;
    text-transform: capitalize;
    font-weight: normal;
    font-size: 20px;
}

.privacy__content {
    margin: 20px;
}

/*MEDIA--------------------------------------*/
@media screen and (max-width: 900px) {

    .nav,
    .privacy,
    hr {
        width: 66%;
    }

    .privacy__content {
        font-size: 12px;
    }
}