/* UI DESIGN */
.main {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 10;
    background-color: #83e370;
}
.highlight {
    position: absolute;
    align-self: center;
    background: #ffffff;
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, .30) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 95%, rgba(255, 255, 255, .30) 100%);
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, .30) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 95%, rgba(255, 255, 255, .30) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.30) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 95%, rgba(255, 255, 255, 0.30) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=0);
    border-radius: 25px;
    width: 80%;
    height: 95%;
    margin: 30px;
}
.top {
    order: 1;
    height: 150px;
    border-radius: 0 0 110px 110px;
    margin: 0 110px;
}
.middle {
    order: 2;
    flex: 2;
    top: 150px;
    min-height: 800px;
    max-width: 1400px;
    margin: 0 auto;
}
.bottom {
    order: 3;
    flex: 1;
    max-height: 150px;
    border-radius: 110px 110px 0 0;
    margin: 0 110px;
}
.top, .bottom {
    box-shadow: inset  0 0 10px rgba(0, 0, 0, 0.664);
    background-color: #248b0f68;
    z-index: 0;
}
/* UI DESIGN */

/* INTERACTIVE */
.interactive {
    display: flex;
    flex-direction: row;
    margin: 15px 225px;
    height: 95%;
}
.nav {
    order: 1;
    flex: 1;
    z-index: 1;
}
.nav-button{
    padding: 0 50px 0 0;
    margin: 25px 0 25px 0;
    align-content: center;
}
.nav-button:hover {
    border-radius: 0  0 black;
    box-shadow: 5px 0 5px black;
    clip-path: inset(-40px 0px -20px 0px);
    z-index: 200;
}
iframe {
    order: 2;
    flex: 2.5;
    align-content: left;
    box-shadow: -1px 0 10px rgba(0, 0, 0, 0.5);
    clip-path: inset(10px 0px 10px -20px);
    border-radius: 10px 0 0 10px;
    overflow: scroll;
    border: none;
    z-index: 1;
    padding: 25px;
    min-width: 700px;
}
/* INTERACTIVE */

/* hide scrollbars */
::-webkit-scrollbar {
    display: none;
}
.center, .changelog {
    scrollbar-width: none;
}

/* ripple effect background */
.background1 {
    top: 40vh;
    right: 60%;
    height: 100vh;
    width: 100vh;
    position: fixed;
    justify-content: center;
    align-items: center;
    display: flex;
    z-index: 0;
}
.background2 {
    left: 60%;
    bottom: 40vh;
    height: 100vh;
    width: 100vh;
    position: fixed;
    justify-content: center;
    align-items: center;
    display: flex;
    z-index: 0;
}
.ripple, .ripple.one, .ripple.two, .ripple.three, .ripple.four {
    position: absolute;
    z-index: -5;
}
.ripple {
border-radius: 50%;
background: transparent;
animation: ripple-animation 6s infinite;
filter: blur(25px);
}
.ripple.one {
    width: 1900px;
    height: 1900px;
    border: 200px solid rgba(255, 255, 255, 0.192);
    animation-delay: 0s;
}
.ripple.two {
    width: 1500px;
    height: 1500px;
    border: 150px solid rgba(255, 255, 255, 0.233);
    animation-delay: .5s;
}
.ripple.three {
    width: 1200px;
    height: 1200px;
    border: 75px solid rgba(255, 255, 255, 0.192);
    animation-delay: 1s; 
}
.ripple.four {
    width: 900px;
    height: 900px;
    border: 50px solid rgba(255, 255, 255, 0.301);
    animation-delay: 1.5s;
}
@keyframes ripple-animation {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
/* ripple effect background */

/* BLADES */
.leftblade, .rightblade {
    position: fixed; 
    top: 0; 
    width: 100px;
    min-height: 1300px;
    height: 100%;
    z-index: 10;
}
.leftblade {
    left: 0;
    min-width: 150px;
}
.rightblade {
    right: 0;
    transform: translateX(-130px);
}
/* BLADES */

html, body {
    margin: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.icon {
    width: 150px;
    float: right;
}
svg {
    height: 100%;
    width: auto;
}
a {
    text-decoration: none;
    color: black;
}
hr {
    border: 5px outset lightgrey;
    border-radius: 10px;
    padding: 0px;
    background-color: lightgrey;
}
img {
    width: 100%;
}
center img {
    width: 88px;
}
table, th, td  {
    border: 5px inset #6cd657;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 25px;
    padding: 5px;
}

/* mobile shit */
@media (max-width: 1080px) {
    .leftblade, .rightblade {
        display: none;
    }
    .top, .bottom {
        margin: 0;
    }
}