html {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: raleway, sans-serif;
    width: 100%;
    height: 100%;
  
}

body {
    display: flex;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

a{
    color: inherit;
    text-decoration: none;
}
.mainHeader {
    align-items: center;
    justify-content: center;
}

h1{
    font-size: 100px;
    text-align: center;
    margin-top: 20vw;
    margin-bottom: 0;
    color: rgba(253, 253, 253, 0.299);
    backdrop-filter: blur(10px);
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: url(#filter);
    -webkit-backdrop-filter: blur(2px);

}

h2 {
    font-size: 1rem;
    text-align: center;
    padding: 0;
}

nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center; 
    gap: 1vw;
    margin-top: 1rem;
    margin-bottom: 1rem ;
    flex: 0 1 auto;
}

li {
    font-size: clamp(10pt, 1vw, 20pt);
    list-style: none;
    text-justify: center;
    white-space: nowrap;
    margin: 10px;
}

nav a {
    border: 0.5px solid rgba(255, 255, 255, 0.18);
    padding: 7px 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.description {
    justify-items: center;
}

p {
    max-width: 60%;
    text-align: justify;
    font-size: 10pt;
    text-align-last: center; 
}


.background {
    height: 100vh;
    background:
    radial-gradient( 
    farthest-corner at top left,
    #c35466 0%,
    #471f3a 40%, 
    transparent 100%),

    radial-gradient(
    farthest-corner at top right, 
    rgb(247, 197, 89) 20%,
    rgb(73, 70, 52) 40%, 
    transparent 100%), 

    radial-gradient(
    farthest-corner at bottom center, 
    rgb(88, 186, 191) 0%,
    rgb(59, 67, 100) 50%, 
    transparent 100%) ;
    animation: radialGradient 10s ease infinite;
    background-size: 200% 200%;
}

@keyframes radialGradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 100%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@media  (max-width: 700px) {
   


    h1 {
        font-size: 7rem;
        padding: 0 5rem;
    }

    .description {
        height: 50%;
    
    }
   
    p {
        max-width: 100%;
        padding: 0 3em;
    }

    nav{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

    }

}

