.loading{
	display: flex;
	gap: 12px;
	padding: 10px;
	justify-content: center;
	margin-bottom: 10px;
    margin: auto;
}

#infobox{
	font-size: 2rem;
	color: white;
    text-align: center;
}

.loading div{
	width: 40px;
	height: 40px;
	background: white;
	border-radius: 50%;
	box-shadow: 0 -0.4rem rgba(60, 0, 80, 0.1) inset;
	animation: cycle 1s ease-in-out infinite;
}

.loading div:nth-child(1){
	animation-delay: 0;
}
.loading div:nth-child(2){
	animation-delay: 0.2s;
}
.loading div:nth-child(3){
	animation-delay: 0.4s;
}
@keyframes cycle{
	0%{
		transform: translateY(0);
	}
	50%{
		transform: translateY(1rem);
	}
	100%{
		transform: translateY(0);
	}
}

/* hamburger */

.overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    background: rgba(0,0,0,0.2);
}

.overlay.black{
    display: block;
}

.ham-button{
    display: none;
    flex-direction: column;
    gap: 10px;
}

.ham-button div{
    width: 46px;
    height: 5px;
    background-color: white;
}

.ham-ul{
    /* opacity: 0; */
    pointer-events: none;
    transition: all 0.5s ease-in-out;
    position: fixed;
    background-color: rgb(10 88 157);
    height: 100vh;
    display: flex;
    width: 75%;
    right: -100%;
    top: 0;
    justify-content: flex-end;
    text-align: right;
    padding: 30px;
}

.ham-ul ul{
    list-style-type: none;
    gap: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ham-ul a{
    font-size: 30px;
    color: white;
}

.ham-ul.show{
    /* opacity: 1; */
    pointer-events:all;
    right: 0;
}
.ham-close{
    margin-right: auto;
}
.ham-close div {
    height: 8px;
    background-color: white;
    transition: ease-in-out 0.5s all;
}
.anim div:nth-child(1) {
    width: 50px;
    transform: rotate(-45deg) translateY(5px);
}
.anim div:nth-child(2) {
    width: 50px;
    transform: rotate(45deg) translateY(-5px);
}

@media screen and (max-width: 750px){
    nav ul{
        display: none;
    }
    .ham-button{
        display: flex;
    }
}

/* navigation bar */

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: rgb(10 88 157);
}

.bold{
    font-weight: bold;
    font-size: 1.3rem;
}

nav{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: rgb(10 88 157);
    /* background-color: white; */
    color:white;
    align-items: center;
}

nav a {
    color: white;
    font-weight: bold;
    font-size: 2rem;
}

nav ul{
    display: flex;
    list-style-type: none;
    gap: 2rem;
}

/* fullscreen */


#fullscreen-btn{
    position: absolute;
    padding: 10px;
    border: 0;
    /* box-shadow: 5px 5px 2px rgba(0,0,0,0.2); */
    font-size: 1rem;
    right: 10px;
    bottom: 10px;
    background-color: transparent;
}


:fullscreen{
    nav{
        display:none;
    }
}