*{
    box-sizing: border-box;
}

html{
    background:#161616;
    font-family: "neue-haas-grotesk-display", sans-serif;
    /* font-weight: 500; */
    font-size: 20px;
    font-style: normal;
}


h1,h2,h3,h4,h5{
    font-weight: 600;
    padding:0;

}

h1{
    margin-block-start: 0em !important;
    margin-block-end: 0em !important;
}


.datafont{
    font-family: "Sometype Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    opacity: 0.7;
}
  

body {
    /* font-family: Arial, sans-serif; */
    background-color: #111;
    color: #ddd;
    margin: 0;
    padding: 40px 70px;
}


nav {
    /* background-color: #333; */
    /* padding: 10px; */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    height:45px;
}

nav a{
    color:white;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

nav>div{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navpages a{
    flex-grow: 1;
    padding:0 30px;
}

.navpages{
    flex-grow: 5;
    padding: 0;
    border-radius: 25px;
    background: rgba(255,255,255,0.02);
}

.navheading{
    /* gap:50px; */

    flex-grow: 1;
}

.titlecontainer{
    text-align: center;
    display: flex;
    align-items: center;
    gap:40px;
}

#titleicon{
    width:45px;
    height:45px;
    border-radius: 50%;
    /* border: 1px solid; */
    border-width:1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.3);
    /* border-color: linear-gradient(180deg, rgba(217,217,217,0.5) -53.27%, rgba(115,115,115,0.5) 179.52%); */
}

nav h1{
    font-size: 20px;
}


#navdata{
    flex-grow: 0;
    padding: 14.25px 35px;
    transition: all 0.5s;
    opacity: 0.3;
    border-radius: 22.5px;
    background: rgba(255,255,255,0.07);
    font-size: 12px;
    border-style: dashed;
    border-color: rgba(255,255,255,0.3);
    border-width: 1px;
}

#navdata:hover{
    opacity: 1;
}

.navdivide{
    /* border-right: 1px solid rgba(255,255,255,0.8); */
    height: 35px;
    width:40px;
}

.navdate{
    margin:0 50px 0 0;
}



h2{
    font-size: 22px;
}

.content{
    animation: fadeIn 0.5s ease-out forwards;
    height: calc(100vh - 145px);
    display: flex;
    gap:45px;
    flex-direction: column;
}
.content section{
    /* background: rgba(255,255,255,0.1); */
    /* height:50%; */
   
    display: flex;
    flex-direction: column;
}

.titledate{
    margin-left: 15px;
    font-size:16px;
}

@keyframes fadeIn {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}