body {
    margin: 0;
    background: #020024;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(11, 11, 140, 1) 52%, rgba(175, 0, 191, 1) 100%);
    color: rgb(235, 235, 235);
    overflow-x: hidden;
}
nav ul {
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(57, 57, 57, 0.436);
    padding: 1%;
}

nav ul li {
    margin-right: 10%;
}

nav ul li a
{
    text-decoration:  none;
    color: rgb(212, 212, 212);
    font-size: x-large;
    transition: all 0.3s ease-in-out;
    width: 100%;
}
nav ul li a::after {
    content: '';
    width: 0px;
    height: 1px;
    display: block;
    background-color: white;
    transition: 300ms;
}


nav ul li a:hover {
    color: rgb(100, 100, 100);
}

nav ul li a:hover::after {
    width: 100%;
}

#hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, rgba(11,11,140,0.7), rgba(175,0,191,0.6));
    margin-bottom: 5%;
}

#hero-icon #content h1 {
    font-size: 2.5rem;
    margin-bottom: 3%;
    font-weight: bolder;
}

#hero-icon #content p {
    font-size: 1.2rem;
    font-weight: 100;
}