@import url(https://db.onlinewebfonts.com/c/a37922cddbb831f8955c2b9f177ce02b?family=Monarcha+W01+Regular);


* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.header-container {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar ul {
    background-color: #61AD80;
    padding: 20px;
    list-style: none;
    display: flex;
    justify-content: center;
    font-size: 3vh;
    font-family: 'Poppins' , sans-serif;
}

.navbar a {
    text-decoration: none;
    text-align: center;
    color: black;
    margin-right: 20px;
    font-weight: 400;
    transition: all .5s ease;
    padding: 4%;
    border-radius: 20px;
    border: 2px transparent solid;
}

.navbar a:hover {
   /* border-color: white; */
    background-color: white;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* filter: contrast(180%) brightness(150%); */
    background-position: 0px 0px,0px 0px,0px 0px,0px 0px;
    background-image: radial-gradient(70% 53% at 36% 76%, #73F2FFFF 0%, #073AFF00 100%),radial-gradient(31% 43% at 7% 98%, #D29BFD 21%, #073AFF00 100%),radial-gradient(35% 56% at 91% 74%, #BEFDD7 0%, #073AFF00 100%),radial-gradient(74% 86% at 67% 38%, #EAC7FF 17%, #073AFF00 100%);
    z-index: -1;
}

section {
    min-height: 100vh;
    display: flex;
}

h1 {
    font-size: 4em;
    font-weight: 500;
    font-family: "Monarcha W01 Regular";
}

p {
    font-size: 1em;
    font-family: 'Poppins' , sans-serif;
    line-height: 1.5em;
}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 2s ease;
}

.reveal.active {
    transform: translateY(0px);
    opacity: 1;
}


