body{
    /* background: #4378d0; */
    background-color: rgb(67, 75, 139);
    margin: 0;
    font-family: Avenir, sans-serif;
}
#header{
    display: none;
}
#content{
    padding: 0;
}
#wallpaper{
    position: fixed;
    width: auto;
    height: 100%;
    z-index: -100;
    bottom: 0;
}
#background{
    background: linear-gradient(0deg, rgb(67, 75, 139) 0%, rgb(89 134 214) 100%) fixed;
}
input {
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#nav-logo-text{
    font-size: 20px;
}

.padded-container{
    position: relative;
    z-index: 0;
}

.padded-container-small{
        margin-left: calc(50% - 500px);
        margin-right: calc(50% - 500px);
        max-width: 1000px;
}

@media screen and (max-width: 600px) {
    h1 {
        font-family: Avenir, sans-serif;
        font-size:5vw; 
        font-weight: 600;
        color: white;
    }

    h2 {
        font-family: Avenir, sans-serif;
        font-weight: 400;
        font-size: 18px;
        color: white;
    }

    .padded-container{
        margin-left: 10%;
        margin-right: 10%;
    }

    .nav-bar{
        margin-left: 40px;
        margin-right: 40px;
    }

    #nav-logo-text{
        display: block;
    }

    .nav-bar a{
        display: none;
    }
}
@media screen and (min-width: 601px) and (max-width: 1000px ) {
    h1 {
        font-family: Avenir, sans-serif;
        font-size: 5vw; 
        font-weight: 600;
        color: white;
    }

    h2 {
        font-family: Avenir, sans-serif;
        font-weight: 400;
        font-size: 20px;
        color: white;
    }

    .padded-container{
        margin-left: 15%;
        margin-right: 15%;
    }

    .nav-bar{
        margin-left: 40px;
        margin-right: 40px;
    }

    #nav-logo-text{
        display: block;
    }
}
@media screen and (min-width: 1001px) {
    h1 {
        font-family: Avenir, sans-serif; 
        font-size: 3em; 
        font-weight: 600;
        color: white;
    }

    h2 {
        font-family: Avenir, sans-serif;
        font-weight: 400;
        font-size: 20px;
        color: white;
    }

    .padded-container{
        margin-left: 16%;
        margin-right: 16%;
    }

    .padded-container-extended{
        margin-left: 12%;
        margin-right: 12%;
    }

    .nav-bar{
        margin-left: 18%;
        margin-right: 18%;
    }
}

@media screen and (min-width: 2016px) {
    .padded-container{
        margin-left: calc(50% - 720px);
        margin-right: calc(50% - 720px);
        max-width: 1440px;
    }

    .nav-bar{
        margin-left: calc(50% - 920px);
        margin-right: calc(50% - 920px);
        max-width: 1840px;
    }
}


div.nav-bar-container{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 60px;
color: white;
background-color: #00000031;
backdrop-filter: blur(10px);
z-index: 100;
}

h1.light-header {
font-family: Avenir, sans-serif;
font-weight: 600;
font-size: 32px;
line-height: 1.5;
color: #eee;
}

h2.light-header {
font-family: Avenir, sans-serif;
font-weight: 500;
font-size: 20px;
line-height: 1.5;
color: #eee;
}

p.dark-text {
font-family: Avenir, sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 1.5;
color: black;
}

p.light-text {
font-family: Avenir, sans-serif;
font-weight: 400;
font-size: 19px;
line-height: 1.5;
color: #eee;
}

p.small-text {
font-family: Avenir, sans-serif;
font-weight: 400;
font-size: 15px;
line-height: 1.5;
color: #eee;
}

img.light-image{
width: 50px;
}

img.shadow {
filter: drop-shadow(-10px 10px 10px rgba(34, 34, 34, 0.359));
}

img.darker-shadow {
filter: drop-shadow(-15px 15px 15px rgba(4, 4, 4, 0.459));
}

.store-button{
transition-duration: 0.3s;
cursor: pointer;
}

.store-button:hover{
transform: scale(1.04);
}

.scaling-img{
transition: 0.3s;
}

.scaling-img:hover{
transform: scale(1.01);
box-shadow: 0 30px 60px -12px rgba(50,50,93,0.25), 0 18px 36px -18px rgba(0,0,0,0.3);
}

.bordered-button{
border: 1px solid white;
border-radius: 30px;
padding: 5px 20px;
font-family: Avenir, sans-serif;
font-weight: 500;
font-size: 18px;
line-height: 1.5;
color: #eee;
transition: 0.2s;
cursor: pointer;
}

.indigo-highlight:hover{
color: white;
background-color: rgba(255, 255, 255, 0.093);
}

.nav-item-dropdown-container{
position: relative;
}

.nav-item-dropdown-menu{
position: absolute;
display: none;
left: 0;
top: 100%;
}

.nav-item-dropdown-container:hover .nav-item-dropdown-menu{
display: block;
}

.nav-item{
display: block;
text-align: center;
float: right;
cursor: pointer;
text-decoration: none;
color: white;
padding: 8px;
padding-left: 15px;
padding-right: 15px;
margin-top: 10px;
margin-right: 15px;
border-radius: 15px;
height: 20px;
font-family: Avenir, sans-serif;
font-size: 16px;
font-weight: 500;
}

.nav-item::after{
content: '';
position: inherit;
width: 100%;
height: 3px;
margin-top: 3px;
background-color: #ffffff;
transform-origin: bottom right;
transition: transform 0.3s ease-out;
transform: scaleX(0);
display: block;
}

.nav-item:hover::after{
transform: scaleX(1);
transform-origin: bottom left;
}

.not-selectable{
user-drag: none;
-webkit-user-drag: none;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}

.feature-container{
display: inline-block;
position: relative;
margin: 15px;
width: calc(22% - 4px);
aspect-ratio: 1;
min-height: 160px;
background:#1e2c3c;
border-radius: 20px;
box-shadow: 0 10px 40px -12px rgba(0,0,0,0.4);
transition: 0.3s;
cursor: pointer;
overflow: hidden;
}
.feature-container:hover{
transform: scale(1.02);
box-shadow: 0 20px 40px -12px rgba(0,0,0,0.5);
background: #2b3f56;
}

.feature-title{
position: absolute;
padding: 20px;
width: calc(100% - 40px);
font-size: 20px;
text-align: center;
}

.feature-image{
position: absolute;
width: 100%;
height: 30%;
bottom: 70px;
object-fit: contain;
opacity: 1;
}
.feature-background{
position: absolute;
width: 100%;
opacity: 1;
-webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.15)), to(rgba(0,0,0,0.25)));
mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
display: none;
}