* {
    margin: 0;
    padding: 0;
    box-sizing: padding-box;
    user-select: none;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #363636;
    z-index: 99999;
}

#loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -80px;
    margin-top: 0px;
    width: 160px;
    height: 160px;
    border: 4px solid #f3f3f3;    
    border-radius: 50%;
    animation: spin 1500ms linear infinite;
}

#loader::before {
    content: '';
    position: absolute;
    left: 15px; top: 0px;
    width: 20px; height: 20px;
    border: 4px solid #bbb;
    background: #bbb;
    box-shadow: 0 0 15px #bbb;
    border-radius: 50%;
}

#loader::after {
    content: '';
    position: absolute;
    width: 100px;height: 100px;
    background: radial-gradient(circle, rgba(255,204,51,1) 0%, rgba(209,126,0,1) 50%, rgba(255,102,0,1) 100%);;
    top: 19%; left: 19%;
    box-shadow: 0 0 50px rgba(255,102,0,1);
    border-radius: 50%;
}
  
#text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -350%);
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
  }

@keyframes spin {
    to {transform: rotate(360deg);}
}

#background {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.25);
}

iframe {
    border: none;
    display: block;
}

body {
    color: white;
    background-color: black;
    text-shadow: 0 0 2px white;
    height: 100vh;
    font-size: 16pt;
    font-family: 'Nova Mono', monospace;
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
}

header {
    position: fixed;
    display: flex;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 40px;
    z-index: 2;
    background: rgba(255,255,255,0.25);
    box-shadow: 0 5px 35px rgba(255,255,255,0.25);
}

header > div {
    position: relative;
    width: 100%;
    text-align: center;
}

.logo {
    letter-spacing: 0.5rem;
    font-weight: 800;
    font-size: 20pt;
    text-transform: uppercase;
}

main {
    position: absolute;
    display: grid;
    grid-template-columns: 2fr 1fr;
    top: 85px;
    width: 100vw;
}

main > div {
    width: 100%;
    height: 100vh;
}

div.map {
    position: relative;
    margin: 15px;
}

div.article {
    position: relative;
    right: 5px;
    margin: 5px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 25px;
    box-sizing: border-box;
    height: 80vh;
}

div.button {
    position: relative;
    transition: 100ms;
    cursor: pointer;
    user-select: none;
}

div.button::before,
div.button::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition: all .5s;
}

div.button::before {
    left: 50%;
}

div.button::after {
    right: 50%;
}

div.button:hover::before {
    left: 0;
    width: 50%;
}

div.button:hover::after {
    right: 0;
    width: 50%;
}

.logo > .pic {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: url("logo.png");
    background-size: cover;
}

.info {
    position: absolute;
    top: -300vh;
    left: calc(50% - 30vw);
    width: 60vw;
    height: 60vh;
    display: flex;
    flex-direction: column;
    transition: all 500ms;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 10px 20px;
    z-index: 1;
    box-sizing: border-box;
    gap: 0.9rem;
    overflow: scroll;
}

.info > p {
    font-size: 24px; 
    font-weight: bold; 
    white-space: pre-line;
}

.info > h1 {
    letter-spacing: 0.2rem;
    text-align: center;
    width: 100%
}

.info > h3 {
    text-align: justify;
    width: 100%;
}

#back {
    position: absolute;
    top: 5px;
    color: white;
    background-color: rgba(255,255,255,0.35);
    border-radius: 25px 25px 0 0;
    text-align: center;
    box-sizing: content-box;
    padding: 15px 5px;
    margin: 5px 15px;
    width: calc(100% - 30px);
	height: 30px;
    z-index: 5;
    transition: all .2s;
    display: none
}

div.button:hover {
    text-shadow: 0 0 5px white;
}

@keyframes animate {
    0% {
        border-bottom: 0;
    }
    100% {
        border-bottom: 1px solid, white
    }
}

footer {
    z-index: 2;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    height: 60px;
    width: 100vw;
}

@media screen and (max-width: 1155px) {
    .objects, .about, .article {
        display: none
    }

    #back {
        bottom: 0px
    }
}

@media screen and (max-width: 385px) {
    header {height: 80px;}
    .info > p {font-size: 16px;}
}