*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    color: white;
    font-family: 'Francois One', sans-serif;
}

body {
    margin: 0;
  	background-color: black;
}

a {
  color: #009FFF;
  
}

p {

    font-size: 3.5vh;
    text-align: center;

}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    
    margin-bottom: 4vh;
    font-size: 3vh;
}

.flexContainer {
    display: flex;

    margin: 0 auto;

    width: 100%;
    
    background-color: black;
    max-width: 600px;

    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
}

#cougarTechLogo {
    width: 90%;
}

#robotImage {
    width: 80%;
    border: 5px solid gray;
    border-radius: 10px;

}

#scrollDownContainer {
    width: 100%;
    height: 8%;


    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;

}

#scrollDownContainer > h2 {
    font-size: 28pt;
}

.arrow {
    height: 100%;
}

.card {
    background-color: #222;
    width: 90%;
    
    margin-top: 2vh;
    border-radius: 1.2vh;

    position: relative;

    overflow: hidden;

    padding: 1vh;
}

.smallCardValue {
    
    margin: 0;
    font-size: 3vh;
    top: 1.35vh;

    font-weight: 10;
}

.smallCardLabel {
    
    text-align: left;
}

.smallCardValue:last-of-type {
    position: absolute;
    right: 1vh;
    text-align: right;

    color: #F4EB17;

    font-family: 'inter';
    font-weight: bold;
    
}

#yellowHeader {

    background-color: #615A05;
    width: 95%;
    
    margin-top: 4vh;
    border-radius: 1.2vh;
    padding: 1.5vh;

    position: relative;
    overflow: hidden;

    text-align: center;

    font-weight: 100;

}

.card > h3 {
    background-color: rgb(78, 78, 78);
    margin-bottom: 1vh;
    padding: 0.5rem;
    font-size: 20pt;
    text-align: center;
    font-weight: lighter;
 	border-radius: 6px;
  
  	-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
}

.bigCardValue {
    font-size: 15pt;
  	color: #CDCDCD;
  	margin-left: 0.5em;
    margin-right: 0.5em;
  	text-align: left;
}