body {
    background-color: black;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    max-width: 100 ;
}

#navbar {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    background-image: linear-gradient(to right, navy, blue);
    padding: 30px;
}

#navbar a {
    color: white;
    text-decoration: none;
    background-color: black;
    margin: 30px;
    padding: 15px 20px;
    border-radius: 10px;
    border: 3px solid navy;
    transition: opacity 0.15s ease, padding 0.2s ease;
}

#navbar a:hover {
    opacity: 0.85;
    background-image: linear-gradient(to right, navy, blue);
}


header h1 {
    color: white;
    font-size: 5em;
    font-style: italic;
    text-align: center;
}

header h2 {
    font-size: 2em;
    font-style: italic;
    text-align: center;
    color: white;
    background-image: linear-gradient(to right, navy, blue);
    padding: 15px 20px;
}


#vem {
    color: white;
    background-color: black;
    display: flex;
    justify-content: center;
    padding: 20px;
    border-radius: 20px;
    border: 5px solid navy;
}


main h2 {
    color: white;
    text-align: center;
    background-image: linear-gradient(to right, navy, blue);
    padding: 15px 20px;
}


#blender-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    background-image: linear-gradient(to right, navy, blue);
    border-radius: 30px;
    width: 100%;
}

#blender-container img {
    scale: 0.5;
    margin-top: -250px;
    border-radius: 30px;
}

#blender-container #text {
    
    text-align: center;
}

#text h3 {
    font-size: 2em;
    text-align: center;
}

#csharp-container{
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(to right, navy, blue);
    border-radius: 30px;
    margin-top: 10px;
   
}

#csharp-container h3{
    color: white;
    text-align: center;
    font-size: 2em;
}

#csharp-container p{
    color: white;
    text-align: center;
}