html {
    scroll-behavior: smooth;
	--dark-main: #1e1e1e;
	--main: #2e2e2e;
	--seconday: #FF6600;
	--dark-secondary: #cc5200;
	--light-white: #e0e0e0;
}

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  
*:not(.nav-inv) {
    color: white;
}

body {
    padding: 0;
    margin: 0;
}
  
body div {
    padding: 0px;
    margin: 0px;
}

.intro {
    background:linear-gradient(-60deg,#ff3300, #ff3300,#FF6600,#ee7752,#995b48,#5f3b30,#1c120f,#2c201d);
    background-size:400% 400%;
    align-items:center;
    animation:gradient 20s ease infinite;
    display:flex;
    flex-direction:column;
    font-family:Mulish,sans-serif;
    font-size: 15pt;
    height: 90vh;
    width: 100%;
    justify-content:center;
    margin:0 auto;
    padding:0;
    text-align:center;
}

@keyframes gradient{0%{background-position:0 50%}50%{background-position:100% 50%}to{background-position:0 50%}}

#h1 {
    width: auto;
    font-size: 5vw; 
    padding: 5%;
    background-color: rgb(53, 53, 53, 0.5);
    background:  linear-gradient(-60deg, rgb(53, 53, 53, 0), rgb(53, 53, 53, 0.5),rgb(53, 53, 53, 0.5), rgb(53, 53, 53, 0.5));
    text-align: center;
    border-radius: 8px;
    margin: 0 5px;
}

@media screen and (max-width: 850px) {
    #h1{
        font-size: 3em;
    }
}

h2 {
    border-radius: 4px;
    padding-left: 8px;
    padding-top: 7px;
    padding-bottom: 7px;
    background-color: #333333;
}

.red {
    -webkit-box-shadow: 0px 0px 0px 0px #000, -8px 0px 0px 0px #ff1900;
    box-shadow: 0px 0px 0px 0px #000, -8px 0px 0px 0px #ff1900;
}

.orange {
    -webkit-box-shadow: 0px 0px 0px 0px #000, -8px 0px 0px 0px #ff6600;
    box-shadow: 0px 0px 0px 0px #000, -8px 0px 0px 0px #ff6600;
}

.blue {
    -webkit-box-shadow: 0px 0px 0px 0px #000, -8px 0px 0px 0px rgb(56, 132, 255);
            box-shadow: 0px 0px 0px 0px #000, -8px 0px 0px 0px rgb(56, 132, 255);
}

.green {
    -webkit-box-shadow: 0px 0px 0px 0px #000, -8px 0px 0px 0px rgb(38, 203, 124);
            box-shadow: 0px 0px 0px 0px #000, -8px 0px 0px 0px rgb(38, 203, 124);
}

.black {
    -webkit-box-shadow: 0px 0px 0px 0px #000, -8px 0px 0px 0px rgb(0,0,0);
            box-shadow: 0px 0px 0px 0px #000, -8px 0px 0px 0px rgb(0,0,0);
}

.main {
    background-color: #383838;
    display: flex;
    margin: 1vh;
}

.buttons {
    margin: 1vh;
    margin-left: auto;
    width: 20vh;
    vertical-align: top;
}


div.buttons a {
    margin: 1vh;
    margin-top: 2vh;
    display: block;
    border-radius: 5px;
    padding: 10px 20px;
    padding-right: 1px;
    background-color: black;

    font-weight: 400;
    -webkit-box-shadow: 0px 0px 0px 2px #000, 2px 2px 0px 2px #FF6600;
            box-shadow: 0px 0px 0px 2px #000, 2px 2px 0px 2px #FF6600;
    text-decoration: none;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

div.buttons a:hover {
    background-color: #ff6600;
  -webkit-box-shadow: 0px 0px 0px 0px #000, 0px 0px 0px 2px #ff6600;
          box-shadow: 0px 0px 0px 0px #000, 0px 0px 0px 2px #ff6600;
}

@media screen and (max-width: 860px){
    div.main {
        display: block;
        padding-bottom: 1vh;
    }

    div.main div.buttons {
        margin-right: auto;
        width: 100%;
    }

    div.main div.buttons >*{
        width: 15vh;
        display: inline-block;
    }

    div.display {
        width: 93% !important;
        margin-left: auto !important;
        margin-bottom: 2vh;
    }
}


div.display {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3vh;
    padding: 0px 1.5vh;
    margin-bottom: 2vh;
    background-color: var(--main);
    transition: all 0.3s;   
}