@font-face {
  font-family: 'Departure Mono';
  src: url('/public/fonts/DepartureMono-1.500/DepartureMono-Regular.woff2') format('woff2'),
       url('/public/fonts/DepartureMono-1.500/DepartureMono-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: black; 
}


:root {
    --highlight: #dfa056;
    --highlight2: #ce4c0e;
    --background: 		#eeeeee;
    --shadow: rgba(0, 0, 0, 0.1);
    --text-color: #ffff;
    --font-family: 'Departure Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    background-color: var(--background);
    font-family: var(--font-family);
    text-align: justify;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
    font-family: var(--font-family);
}

h1 {
    color: var(--text-color);
}

h3 {
    color: var(--text-color);
}

a {
    color: var(--text-color);
}

span {
    color: var(--text-color);
}

li {
    color: var(--text-color);
}
/* -----------------------------------------------Content----------------------------------------------*/

.center-vertically {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.section{
    height: 300px;
}

/**
------------------------------Responsive padding----------------------------
*/

@media screen and (max-width:899px) {
    .smallBigScreenTextPaddingAlignment{
        padding-left: 10%; 
        padding-right: 10%; 
        text-align: start;
    }

    #Home {
        padding-bottom: 50px; 
        padding-top: 25px;
    }
}

/* Desktop */
@media screen and (min-width:900px) {
    .smallBigScreenTextPaddingAlignment{
        padding-left: 20%; 
        padding-right: 20%;
        text-align: start;
    }

    #Home {
        padding-bottom: 50px;
        padding-top: 75px;
    }
}
