*{
    box-sizing: border-box;
    margin:0;
    padding:0;
    font-family: 'Kumbh Sans', sans-serif;
    scroll-behavior: smooth;
    font-family: 'Georama', sans-serif;
    animation: fade-in .4s ease-out;
    scroll-behavior: smooth;
    transition: .1s ease;
}

a{
    color:rgba(14,14,14,0.7)
}
.page-top{
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgb(10, 10, 10) 0%, rgb(10, 10, 10) 55%, rgba(24,24,24,1) 90%, rgba(255,255,255,0) 100%);    
    height: 55vh;
}
.navbar {
    height: 140px;
    z-index: 99999;
    display: flex;
    justify-content: center;
    font-size: 20pt;
}
/*dropdown menu content*/
.dropdown-content a {
    float: none;
    display: block;
}

.dropdown-content {
    display: none;
    z-index: 999;
    opacity: 0;
    transition: display 1s ease;
}

.dropbtn:hover {

}

.dropbtn:hover .dropdown-content{
    position: absolute;
    padding-top: 15%;
    display:block;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    right: -30%;
    left: -30%;
    z-index: 999;
    opacity: 1;
    background-color: black;
    border-radius: 10px;
    transition: all 1s ease-in-out;
    margin-top: 1vh;
}

.dropdown-content{
    font-size: 1.4rem;
}
.dropdown-content a{
    margin-bottom:10%
}
/*dropdown menu content*/
.navbar a{
    color: white;
}

.navbar li{
    color:white;
    cursor: pointer;
}

.navbar-container {
    justify-content: center;
    display:flex;
    height: 80px;
    z-index: 999;
    width: 100%;
    margin: auto;
    padding: 0 50px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    min-width: 360px;
    justify-content: center;
    animation: fadeInExpand 1.15s ease-in-out;
}

.navbar-items {
    height: 6vh;
    width: 160px;
    justify-content: center;
    margin-left: 1vw;
    margin-right: 1vw;
    position: relative;
    top:30%;
    text-align: center;
}
.navbar-items a{
    text-decoration: none;
}

.navbar-items:hover li{
    animation: fadeOut 1.15s ease-out;
    opacity: .5;
}

.navbar-link:hover{
    animation: fadeOut 1.15s ease-out;
    opacity: .5;
}

h2{
    font-size: 2.5rem;
    font-size: 3.5vw;
}

.hero{
    animation: none;
    height: 30vh;
    width: 100%;
    display:flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-header{
    font-size: 6rem;
    font-size: 6vw;
    animation: fade-in-bottom .8s ease-out;
    color: whitesmoke;
    margin-bottom: 10vh;
}
.content-container{
    justify-content: center;
    text-align: center;
    width: 95%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 2vh;
    animation: fade-in 1s ease-in-out;
}
.content-header{
    padding-top: 1vh;
    padding-bottom: 3vh;
    font-size: 4.2rem;
    animation: fade-in-bottom .8s ease-out;
}
.content-container p{
    width: 60%;
    margin: auto;
    font-size: 1.6rem;
    margin-bottom: 2.5vh;
}
.materiallist{
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    text-align: left;
}
.materiallist li{
    padding:1px;
    font-size:1.2rem;
}
.cat-imgs-container{
    padding-top:2vh;
    margin-bottom: 2vh;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.cat-imgs-container img{
    height:35vh
}

img{
    width: auto;
    margin: 5px;
    border-radius: 1px;
    transition:ease-in-out .15s;
    border-radius: 7.5px;
}
img:hover{
    transform: scale(1.05);
    transition:ease-out .25s;

}

.prototype-content-container img{
    height: 50vh;
    width: auto;
    margin: 2vh;
}
pre{
    text-align: left;
}
video{
    margin-top: 65px;
}
footer{
    min-height: 180px;
    text-align: center;
    background-color: lightgrey;
    padding-bottom: px;
}

footer p{
    position: relative;
    padding-top: 80px;
    font-size: 18pt;
}

@media screen and (max-width:960px) {
    .hero{
        height: 18vh;
    }
    .hero-header{
        font-size: 6rem;
        font-size: 7vw;
        margin-bottom: 6vh;
    }
    .content-container{
        width: 90%;
    }
    .materiallist{
        width: 90%;
    }
    .materiallist li{
        font-size:1.6rem;
    }
    .cat-imgs-container{
        width: 100%;
    }
    .cat-imgs-container img{
        height:15vh;
    }
    .cat-imgs-container img:hover{
        transform: scale(1.15);
    }
    .prototype-content-container img{
        height: 20vh;
        margin: .5vh;
    }
    .software-image{
        margin-right: auto;
        margin-left: auto;
        margin-top: 20px;
    }
    footer{
        min-height: 120px;
    }
}