@import url('https://api.fontshare.com/v2/css?f[]=new-title@700&display=swap');

* {
	margin: 0;
	padding: 0;
    scroll-behavior: smooth;
}

:root{
    --globalcolor:  #000;
    --contrast:  #fff;
    --alternative: #76edf1;
}

::selection {
    background: var(--alternative);
    background: var(--globalcolor);
}

body {
    text-align: center;
    font-family: 'New Title', serif;
    font-weight: 900;
    font-style: normal;
}

#background {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background: url(../img/background.jpg) no-repeat center / cover;
}

#logo {
    position: fixed;
    z-index: 3;
    top: 2px;
    left: 10px;
    width: 200px;
    height: 50px;
    background: url(../img/logo.svg) no-repeat center / contain;
}

.navigation {
    position: fixed;
    z-index: 2;
    text-decoration: none;
    color: var(--alternative);
    text-transform: uppercase;
    font-size: 14dvw;
    text-shadow: 0 0 10px var(--alternative);
    line-height: 1em;
}

.navigation:hover {
    color: var(--contrast);
    text-shadow: 0 0 20px var(--contrast);
}

#watch {
    top: 0;
    left: 25px;
}


#listen {
    bottom: 0;
    left: 25px;
}


#follow {
    top: 0;
    right: 25px;
}


#subscribe {
    bottom: 0;
    right: 25px;
}


@media screen and (max-width: 980px) {

    

}