@font-face {
    font-family: 'myfont'; /*a name to be used later*/
    src: url('../fonts/OafedoChill.otf') /*URL to font*/
}

body {
    background-color: #28282B;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
}



h1 {
    font-family: 'myfont';
    white-space: nowrap;
    text-align: center;
    color: white;
}

a {
    font-size: 20px;
    font-family: 'myfont';
    text-align: center;
    color:rgb(235, 235, 235);
    transition: all 310ms;
}

a:link { 
    text-decoration: none; 
} 

a:visited { 
    text-decoration: none; 
} 

a:hover { 
    text-decoration: none; 
    transition: all 300ms;
    font-size: 25px;
} 

a:active { 
    text-decoration: none; 
}

#main-links {
    display: block;
    text-align: center;
}

.content--canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Prevents the canvas from capturing mouse events */
    z-index: -1;
}
