::-webkit-scrollbar{
    display: none;
}

::selection{
    background-color: #41bbc0;
    color: white;
}

.gaegu-regular {
  font-family: "Gaegu", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Starborn";
  src: url(fonts/starborn/Starborn.otf);
}

@font-face {
  font-family: "Oliver";
  src: url(fonts/oliver/Oliver-Regular.ttf);
}

html{
    height: 100%;
    min-height: 100%;
}

body{
    background-image: linear-gradient(white,#8cd3d5);
    background-size: cover;
    background-repeat: no-repeat;

    height: 100%;
    min-height: 100%;

    overflow-y: hidden;
}

p{
    font-family: "Gaegu", sans-serif;
}

header{
    text-align: center;
}

#content{
    display: flex;
}

#left{
    width: 15rem;
    height: fit-content;
    z-index: 99;

    position: absolute;
    left: 13%;
    top: 8%;

    nav{
        width: 100%;
    }
}

#fig2{
    position: absolute;
    
    left: 10%;
    top: 32%;

    width: 400px;
    height: 400px;

    z-index: 40;
}

#center{
    width: 35rem;
    height: fit-content;
    margin: auto;

    z-index: 50;

    border: 2px solid black;

    padding: 2rem;

    background-color: white;
}

#right{
    width: 20rem;
    height: fit-content;
    z-index: 98;

    position: absolute;
    right: 12%;
    bottom: 38%;
}

#fig{
    height: 350px;
    width: 350px;

    position: absolute;

    right: 8%;
    bottom: 33%;
    z-index: 100;
}

button{
    width: 100%;
    font-family: "Gaegu", sans-serif;
}

h1{
    font-family: "Oliver";
    color: #41bbc0;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

#titulo{
    font-size: 4em;
}

#welcome{
    text-align: center;
    margin: 0;
    font-size: 3em;
}

h3{
    margin: 0px;
    color: #44444e;
    font-family: "Oliver";
}

hr{
    margin: 0px;
    border-color: #41bbc0;
}

aside{
    width: 60%;
    padding: 0.75rem;

    border-radius: 5px;
    border: black 2px solid;

    backdrop-filter: blur(3px);
    background-color: rgba(216, 216, 216, 0.564);
}

ul{
    list-style-type: none;
    list-style-position: inside;
    padding: 0px;
    margin: 0px;
    li {
        padding: 0px;
        margin: 0px;
    }
}

.nav-header{
    padding: 5px;

    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #41bbc0);
    border-radius: 8px;
    border-end-end-radius: 0px;
    border-end-start-radius: 0px;
}

.nav-section{
    margin: 0px;
}

a {
  color: #41bbc0;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: #44444e;
  background-color: transparent;
  text-decoration: underline;
}

footer{
    background-color: #41bbc0;
    text-align: center;

    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3rem;
}