@import url('https://fonts.googleapis.com/css2?family=Anta&family=Asimovian&family=Gemunu+Libre:wght@200..800&family=Stalinist+One&display=swap');

html {
    overflow-x: hidden;
    width: 100%;
    /* height: 100%; */
    scroll-behavior: smooth;
    min-height: 100%;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* background-size: 400% 400%; */
    margin: 0;
    /* min-height: 100vh; */
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background: #080510;
    min-height: 100%;
}

.content {
    position: relative;
    z-index: 10;
    width:100%
    /* padding-top: 80px; */
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height:100vh; */
}

.content-header{
    position: relative;
    z-index: 10;
    /* padding-top: 80px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height:100vh;
    width:100%;
}

.section {
    height:65vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position:relative;
    z-index:10;
    background: #080510;
}

.section_1 {
    height:65vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position:relative;
    z-index:10;
}

.page {
    position: relative;
    z-index: 10;
    width:100%;
    color:white;
}

.nebula {
    background: #080510;
    width: 100%;
    min-height: 100vh;
    position: fixed;
    overflow: hidden;
    z-index:-1;
    pointer-events: none;
}

.cloud {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.cloud-purple {
    background: rgba(83, 74, 183, 0.6);
    width: 700px;
    height: 500px;
    top: -100px;
    left: -80px;
    animation: drift1 8s ease infinite;
    z-index: 0;
}

.cloud_blue {
    background: rgba(55, 138, 221, 0.4);
    width: 650px;
    height: 460px;
    top: -80px;
    left: 38%;
    animation: drift2 13s ease 0.5s infinite;
    z-index: 0;
}

.cloud_teal {
    background: rgba(55, 163, 221, 0.4);
    width: 780px;
    height: 580px;
    top: 50%;
    left: -40px;
    animation: drift3 13s ease 0.5s infinite;
    z-index: 0;
}

.cloud_purple2 {
    background: rgba(46, 9, 109, 0.4);
    width: 620px;
    height: 440px;
    top: 33%;
    left: 42%;
    animation: drift3 13s ease 0.5s infinite;
    z-index: 0;
}

.cloud_blue2 {
    background: rgba(48, 109, 221, 0.4);
    width: 820px;
    height: 640px;
    top: 65%;
    left: 2%;
    animation: drift3 13s ease 0.5s infinite;
    z-index: 0;
}

.cloud_right {
    background: rgba(83, 74, 183, 0.5);
    width: 600px;
    height: 500px;
    top: 15%;
    right: -100px;        
    animation: drift2 10s ease 1s infinite;
}

.cloud_bottom_right {
    background: rgba(46, 9, 109, 0.45);
    width:700px;
    height:700px;
    right:-100px;
    bottom:-100px;
    animation: drift1 12s ease 3s infinite;
}

.star {
    position:absolute;
    background:white;
    border-radius: 50%;
    opacity: 1;
}

@keyframes twinkle {
    0%, 100% {opacity: 1;}
    50% {opacity: 0.3;}
}

@keyframes drift1 {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.08) translate(6px, -4px);
    }
}

@keyframes drift2 {

    0%,
    100% {
        transform: scale(1) translate(0px, 0px);
    }

    50% {
        transform: scale(1.06) translate(-6px, 5px);
    }
}

@keyframes drift3 {

    0%,
    100% {
        transform: scale(1) translate(0px, 0px);
    }

    50% {
        transform: scale(1.1) translate(5px, 8px);
    }
}


.stalinist-one-regular {
    font-family: "Stalinist One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.asimovian-regular {
    font-family: "Asimovian", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.anta-regular {
    font-family: "Anta", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.gemunu-libre{
  font-family: "Gemunu Libre", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

.header {
    text-align: center;
    color: white;
    z-index: 1000;
}

button {
    background: #080510;
    color:white;
    width:150px;
    height:75px;
    font-family: 'gemunu-libre';
    border:none;
    font-size: 18px;
}

h3 {
    margin-right:30px;
    margin-left:30px;
}

a{
    color:white;
}

/* ol {
    align-items: center;
    justify-content: center;
} */

.table {
    display: flex;
    /* margin-top:30px; */
    /* margin-right:30px;
    margin-left:30px; */
    flex-direction: row;
    gap:10px;
    border:1px solid white;
    padding:15px;
    margin:40px 80px;
    width:calc(100%-80px);
}

h2 {
    margin-right:30px;
    margin-left:30px;
}

.mission {
    border:1px solid rgba(127, 119, 221, 0.3);
    padding:32px 26px;
    max-width:700px;
    width:45%;
    position:relative;
    margin:20px auto;
    color:rgba(166, 137, 235, 0.8);
}

.mission-blue {
    border:1px solid rgba(55,138,221,0.3);
    padding:32px 26px;
    max-width:700px;
    width:45%;
    position:relative;
    margin:20px auto;
}



.tag {
    font-family:'Anta';
    font-size:11px;
    letter-spacing:0.12rem;
    color:rgba(175,169,236,0.8);
    text-transform:uppercase;
    margin-bottom:14px;
    text-align: center;
}

.blue-tag {
    color:rgba(137,188,235,0.8);
}

.card-title {
    font-size:26px;
    /* color:white; */
    margin-bottom:16px;
}

.card-body {
    font-size:16px;
    color:rgba(200,210,240,0.85);
    line-height:1.8;
}

.projects-container{
    width:90%;
    max-width:1200px;
    margin:40px auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.projects-row {
    display:flex;
    gap:15px;
    width:100%
}

.project, .project-full {
    width:100%;
    padding:20px;
}

.project{
    flex:1;
    padding:20px
}

.projects-container h3 {
    margin:0 0 15px 0;
}

.color-box{
    margin:40px auto;
    padding:60px 40px;
    background-color: rgba(166, 137, 235, 0.24);
    display: flex;
    flex-direction: column;
    align-items: center;
    width:90%;
    max-width: 1200px;
}

.item-container {
    width:100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap:20px;
    margin-top:40px;
    align-items: flex-start;
    justify-content: center;
}

.item {
    width:250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.item img {
    width:80px;
    height:auto;
    margin-bottom:15px;
}

.title {
    text-align: center;
    margin-right:20px;
    margin-left:20px;
}

footer {
    background:rgba(166, 137, 235, 0.8);
    font-family:'stalinist-one-regular';
    font-size:12px;
    align-items: center;
    text-align: center;
    padding-top:10px;
    padding-bottom:10px;
}