/**
 * @author Lasse Juul Kolding / http://juvul.com
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: rgb(113, 116, 118);
    overflow:hidden;
    font-size : 16px;
    font-family:Arial, Helvetica, sans-serif;
    text-align:center;
}
 
p {
    color: rgb(203, 203, 203);
}

.nav-bar {
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0px;
    background-color: rgb(82, 85, 88);
    display: flex;
    text-align: center;
    z-index: 1;
}

.nav-bar.indexGradient {
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #cfcfcf, #58595B);
    transition: all 0.5s ease-in;
}

.nav-bar.indexLogo {
    left: 0;
    width: 100%;
    padding: 6px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    transition: all 0.5s ease-in;
}


#container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    height: 80vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.link {
    text-decoration: underline;
    color: white;
    font-size: 24px;
}