* {
    font-family: 'Kumbh Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: rgb(243, 243, 243);
    font-family: Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    height: 60px;
    width: 100%;
    position: relative;
}

.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    justify-content: center;
}

.navbar-items {
    display: flex;
    justify-content: center;
	align-content: center;
    width: fit-content;
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top:100%;
    transform: translateY(10px);
    opacity: 0;
    background-color: aliceblue;
	box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.2);
    border-radius: 10px;
    width: 100%;
    left: 0;
    right: 0;
	animation: fadeIn 0.5s ease forwards;
}
  
.navbar-items.dropdown:hover .dropdown-content {
	display: flex;
	opacity: 1;
	transform: translateY(0);
}

.dropdown-content a {
	transition: all 0.3s ease;
	display: block;
	padding: 10px;
	color: black;
	text-decoration: none;
	position: relative;
	z-index: 999;
	margin:20px;
  }

.navbar-items a {
    color: black;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0 1rem;
	text-decoration: none;
}


.navbar-items a:hover {
	color: deepskyblue;
}

.head {
    margin-top: 60px;
    text-align: center;
    font-size: 3rem;
    color: black;
}

.data-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-end;
    height: 45vh;
    width: 80vw;
    margin-bottom: 2rem;
}

.bar {
    position: relative;
    bottom: 0;
    background-color: deepskyblue;
    transition: 0.15s all ease;
    display: flex;
    justify-content: center;
    border-radius: 4px 4px 2px 2px;
    flex-grow: 1;
    margin-bottom: 0;
    margin-top: 0;
    margin-left: 1px;
    margin-right: 1px;
}

.bar label {
	position: absolute;
    display: none;
}

.bar:hover {
    transition: all ease .1s;
    transform: scale(.95);
    opacity: 75%;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 2vh;
}

.button {
    padding: 1.2rem;
    font-weight: bolder;
    background-color: mediumblue;
    border-radius: 10px;
    color: white;
    font-size: 1.2rem;
    border: white;
    margin-right: 1rem;
    box-shadow: gray 3px 3px 3px;
    transition: ease-in-out .35s;
}

.button:hover {
    animation: fadeOutShrink .25s ease-in-out;
    opacity: .8;
    transform: scale(.95);
    box-shadow: 0px 0px 0px;
    border-radius: 20px;
}

.speedselectcontainer {
    margin-top: 2vh;
    margin-bottom: 2vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.speedselectcontainer *{
    margin: .5vh;
    font-size: 2.2vh;
}

.miscTextContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2vh;
    margin-top: 2vh;
    margin-bottom: 2vh;
}

.miscTextContainer p{
    text-align: center;
    font-size: 2.2vh;
}

.desc {
    display: none;
    flex-direction: column;
    justify-content: center;
    font-size: 1.2rem;
    margin: 2rem;
}

.desc p {
    margin-left: auto;
    margin-right: auto;
}

.desc img {
    width: 40vw;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    transition: .5s ease;
}

.desc img:hover {
    transition: 1.25s ease-out;
    transform: scale(1.1);
    box-shadow: 3px black;
}

sup {
    vertical-align: super;
    font-size: 0.8rem;
}

@keyframes fadeOutShrink {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: .8;
        transform: scale(.95);
    }
}

@media screen and (max-width: 960px) {
    .body {
        margin: auto;
        width: 100%;
    }

    .navbar-items {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .head{
        font-size: 6.4vw;
        margin-bottom: 2vh;
    }

    .data-container{
        display: flex;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        margin-top: 5vh;
        margin-bottom: 0vh;
    }

    .data-container {
        width: 90vw;
        margin-left: auto;
        margin-right: auto;
    }

    .bar label{
        display: none;
    }

    .button-container {
        flex-direction: column;
        width: 80vw;
    }

    .button {
        height: 6.5rem;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 4vw;
        margin-top: 1.2vh;
    }

    .speedselectcontainer {
        font-size: 6vw;
    }

    .speedselectcontainer select{
        height: 6vw;
        font-size: 4.8vw;
    }

    .speedselect {
        font-size: 1.5rem;
    }

    .desc img {
        width: 80vw;
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
