body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgb(14, 21, 27);
    max-width: 100%;
    row-gap: 4vh;

    padding: 0;
    margin: 0;
    /* min-width:800px; */
}

#paper {
    height:100%;
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    cursor: pointer;
}

.box1 {
    /* margin-top: 5px; */
    scroll-margin-top: 50px;
    /* height: 500px; */

    max-width: 800px;
    min-width: 550px;

    width: 50%;
    background: rgb(14, 21, 27);
    border-radius: 20px;
    box-shadow: -5px -5px 7px rgba(255,255,255,0.15),
            7px 7px 10px rgba(6, 6, 6, 0.7);


    display: flex;
    flex-direction: column;
    align-items: center;
}

#box2 {
    width: 98vw;
    height: 100vh;
}

.title {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 48px;
    color: white;
}

.montserrat-title {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 36px;
    color: white;
}

.montserrat {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 20px;
    color: white;
    opacity: 0.7;

    text-align: justify;
}

.margin {
    margin-top: 2%;
    margin-bottom: 2%;
    margin-left: 5%;
    margin-right: 5%;
}

.margin-last{
    margin-top: 2%;
    margin-bottom: 4%;
    margin-left: 5%;
    margin-right: 5%;
}

.left-justify{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 90%;
}

.circle{
    width: 180px;
    height: 180px;
    border-radius: 50%;


    border: 1px solid white;

    margin: auto;
    /* margin-right: 10px; */


    display: flex;
    align-items: center;
    justify-content: center;
}

.small-circle {
    width: 25px;
    height: 25px;
    background: white;
    border-radius: 50%;
    position: absolute;

    overflow: hidden;
    margin: auto;

    -webkit-animation: circle 5s linear infinite;
    animation: circle 5s linear infinite;
}

@-webkit-keyframes circle {
    0% {
        transform: rotate(0deg)translate(-90px)rotate(0deg);
    } 
    100% {
        transform: rotate(360deg)translate(-90px)rotate(-360deg);
    }
}

@keyframes circle{
    0% {
        transform: rotate(0deg)translate(-90px)rotate(0deg);
    } 
    100% {
        transform: rotate(360deg)translate(-90px)rotate(-360deg);
    }   
}

.text span{
    position: absolute;
    left: 50%;
    font-size: 1.3em;
    transform-origin: 0 100px;
}

.arial {
    font-family: Arial, Helvetica, sans-serifs;
}

.split {
    display: flex;
    justify-content: space-around;

}

.fixed {
    position: fixed;
    top: 0;
    right: 0;
    height: 50px;
    width: 100%;
    background: rgb(19, 28, 37);
    z-index: 1000;

    box-shadow: 10px 10px 15px rgba(6, 6, 6, 0.4);

    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: center; */
}  

.page-links {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 20px;
    color: white;
    text-decoration: none;


    padding: 1%;
    transition: 0.2s;

    text-align: center;
    line-height: 100%;
    /* height: 100%S; */
}

.page-links:hover {
    background-color: white;
    color: black;
}

.user-pic {
    height: 75%;
    aspect-ratio: 1/1;
    position: absolute;
    right: 1%;
    border-radius: 50%;
    cursor: pointer;

}

.sub-menu-wrap {
    position: absolute;
    top: 100%;
    right: 2%;
    width: 400px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.8s;
}

.sub-menu-wrap.open-menu{
    max-height: 500px;
}

.sub-menu {
    background: rgb(19, 28, 37);
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: -2px -2px 3px rgba(255,255,255,0.1),
            7px 7px 10px rgba(6, 6, 6, 0.7);

    /* border: 1px solid white; */
}

.user-info{
    display: flex;
    align-items: center;
}

.user-info label{
    font-weight: bold;
}

.user-info img {
    width: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.sub-menu hr {
    border: 0;
    height: 1px;
    width: 100%;
    background: black;
    margin: 15px 0 10px;
}

.sub-menu-content {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    opacity: 0.7;
    margin: 12px 0;
    margin-left: 3%;
    margin-right: 3%;
    text-align: justify;

}

section {
    width: 100%;
    height: 100px;
}

.wave {
    position: absolute;
    left: 0; 
    width: 100%;
    height: 100px;
    background: url('wave.png');
    background-size: 1000px 100px;
}

.wave.wave1 {
    animation: animate 30s linear infinite;
    z-index: 1000;
}

.wave.wave2 {
    animation: animate2 15s linear infinite;
    z-index: 999;
    opacity: 0.5;
    animation-delay: -5s; 
    transform: translateY(10px);
}

.wave.wave3 {
    animation: animate 15s linear infinite;
    z-index: 998;
    opacity: 0.2;
    animation-delay: -2s; 
    transform: translateY(-10px);
}

.wave.wave4 {
    animation: animate2 8s linear infinite;
    z-index: 997;
    opacity: 0.6;
    animation-delay: -10s; 
    transform: translateY(20px);  
}

@keyframes animate {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}

@keyframes animate2 {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: -1000px;
    }
}

#footer {
    /* position: absolute; */
    width: 100%;
    overflow: hidden;
    height: 130px;
    z-index: 1001;
    background-color: white;
    
    display: flex;
    align-items: center;
    flex-direction: column;
    /* justify-content: center; */

    margin-top: -4vh;
}

.social-icon {
    /* width: 30%; */
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    /* margin: 10px; */
    /* flex-wrap: wrap; */
}

.links{
    margin-top: 9px;
    font-size: 38px;
    opacity: 0.75;
    color: black;
    margin-left: 15px;
    margin-right: 15px;
    /* display: inline-block; */
    transition: 0.5s;
}

.links:hover{
    opacity: 1;
    transform: translateY(-10px);
    /* color: red; */
}

.tinder:hover{
    color: #f24c73;
}

.hidden {
    opacity: 0.005;
    transition: 1s;
}

.hidden:hover {
    opacity: 0.8;
}