@media screen and (max-width: 966px) {
}

:root {
  --Background: rgb(234, 234, 234);
  --Foreground: rgb(39, 39, 39);
  --Primary: rgb(130, 6, 6);
  --Secondary: rgb(225, 134, 15);
  --Decent: rgb(207, 152, 152);
  --Rotate: 0deg;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: var(--Background);
    color: var(--Foreground);
}

main {
    padding-top: 0;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
}

h1 {
    color: var(--Primary);
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 2em;
    text-align: left;
    align-content: center;
    font-weight: 500;
}

nav h1{
    color: white;
}

h2 {
    color: var(--Secondary);
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    margin: 0;
    margin-top: 18px;
    font-size: 3em;
    text-align: left;
    font-weight: 500;
}

.h2_on_image {
    position: absolute;
    align-self: center;
    text-align: center;
    width: -webkit-fill-available;
}

h3 {
    color: var(--Secondary);
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    margin: 0;
    font-size: 2em;
    text-align: left;
    font-weight: 500;
}

a {
    display: flex;
    justify-content: center;
}

a:hover{
    background-color: var(--Primary);
}

.img {
    max-width: 99%;
    border: 2px solid #494949;
    border-radius: 6px;
}

header {
    background: #3290b6;
    background: linear-gradient(
        90deg, 
        rgb(228, 161, 84) 0%, 
        rgb(216, 102, 67) 50%, 
        rgb(245, 111, 106) 100%
    );
    position: fixed;
    width: 100%;
    z-index: 1;
    top: 0;
}

nav a,
.dropbtn {
    color: white;
    background-color: #36383b52;
    text-decoration: none;
    font-size: 1.2em;
    padding: 10px 10px;
    border-radius: 8px;
}

nav .horizontal .row{
    flex: 1;
}

.horizontal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.horizontal a,
.horizontal .dropdown,
.dropbtn {
    display: flex;
    flex: 1;
    min-width: fit-content;
    margin: 20px;
}

.horizontal l2 {
    display: inline-block;
    width: auto;
    margin-bottom: 20px;
}

.dropdown {
    margin: 20px;
    float: left;
    overflow: hidden;
}

.dropdown-content {
    margin-top: 42px;
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0.1px 0.1px 17px rgba(128, 128, 128, 0.473);
    z-index: 2;
    background: #c6cacc9f;
    border: 1px solid #8a8aa37e;
    border-radius: 12px;
    max-height: fit-content;
    backdrop-filter: blur(10px);
}

.dropdown-content a {
    float: none;
    background-color: #6a6e7552;
    padding: 12px 16px;
    margin: 10px;
    text-decoration: none;
    display: block;
    text-align: left;
    color:  var(--Foreground);
}
.dropdown-content a:hover{
    background-color: rgba(168, 38, 38, 0.614);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn{
    margin: 0 !important;
}

section {
    margin: 20px 0;
}

button, .button {
    background-color: #6a6e7552;
    color:  var(--Foreground);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: var(--Primary);
}

footer {
    border-top: solid 2px #9e9e9e2d;
    padding: 10px;
    text-align: center;
    bottom: 0;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

.content{
    padding: 20px;
}

.content a {
    background-color: #6a6e7552;
    color:  var(--Foreground);
    border: 1px solid #a0a9b950;
    font-size: 24px;
    cursor: pointer;
    border-radius: 14px;
    text-decoration: none;
    padding: 10px;
    margin: 5px;
    width: fit-content;
}

a.bigButton {
    background-color: #7c6d5a52;
    color:  var(--Foreground);
    border: 2px solid #6f737b50;
    font-size: 36px;
    cursor: pointer;
    border-radius: 18px;
    text-decoration: none;
    padding: 14px;
    text-align: center;
}

a.bigButton img {
    width: 42px;
    height: 42px;
    margin-right: 15px;
}

a.bigButton:hover {
    background-color: rgba(168, 38, 38, 0.614);
}

.icon {
    width: 90px;
    height: 90px;
}

.smallIcon{
    width: 60px; 
    height: 60px; 
}

.darkModeIcon{
    width: 20px; 
    height: 24px; 
    transform: rotate(var(--Rotate));
    transition: all 0.5s ease-out;
}

.vertCenterImg{
    margin: auto;
    margin-left: 20px;
    margin-right: 20px;
}

.row{
    display: inline-flex;
    flex-direction: row;
}

.rowOverflow{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.rowOverflow div{
    display: flex;
    flex: 1;
    flex-direction: column;
}

.shadow{
    filter: drop-shadow(0.1px 0.1px 17px gray);
}

.shadowWhite{
    filter: drop-shadow(0.1px 0.1px 17px white);
}

.blur{
    filter: blur(16px); width: 100%;
}

.banner{
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;
}

.blueBanner{
    background-color: #2486f76e;
}

.redBanner{
    background-color: #f75c246e;
}

.box{
    margin: 10px;
    padding: 20px;
    min-width: 300px;
    min-height: 50px;
    border: 1px solid lightgray;
    border-radius: 20px;
}

.blueBox{
    background-color: #2486f76e;
}

.redBox{
    background-color: #f760244c;
}

.greenBox{
    background-color: #75f7244d;
}

.yellowBox{
    background-color: #f7ed2448;
}

.grayBox{
    background-color: #8a919941;
}

.hover:hover{
    filter: brightness(110%);
    cursor: pointer;
    filter: drop-shadow(0.1px 0.1px 10px rgb(242, 167, 130));
}

.link{
    display: inline !important;
    margin: 0 !important;
    color: #829fff;
}