html {
    background-color:#3f3473;
    
    background: radial-gradient(ellipse at bottom, #3f7ba2 3%, #35355d 15%, #26263a 25%, #0b0c10 55%);
    background-size: 1000% 100%;
    background-position: center;
    background-attachment: fixed;
    font-weight: 400;
    letter-spacing: 0.1em;
}

body {
    font-family: "Urbanist", sans-serif;
    text-align: center;
    color: #ffffff;
    margin:0;
}

main {
    height:inherit;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom:2em;
}

footer p {
    color: #000000; /* White text for contrast */
}

footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    font-size: 0.75em;
}

h1 {
    font-size: 4em; 
    margin: 0;
    letter-spacing:0.05em;
}

h2 {
    margin: 0;

    font-size: 2em;
}

h3 {
    font-size:1.5em;
    margin: 0;
}

p, a {
    font-size: 1.25em;
    color: white;
    margin: 0.6em;
}

#logo {
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-bottom: 1em;
    text-align: left;
    padding:0;
    margin:2em;
}

#logo img {
    width: 12em;
    margin-right: 20px;
}

@media (max-width: 800px) {
    h1{
        font-size: 2em;
    }

    h2 {
        font-size: 1.25em;
    }

    #logo {
      flex-direction: column; /* Stack items vertically on smaller screens */
      text-align: center;
    }

    #logo img {
        width: 9em;
        margin: 0;
    }
}


.neon {
    color: #ffffff;
    text-shadow: 
    0 0 10px #ffffff, 
    0 0 20px #000000, 
    0 0 30px #3f3473
}

.line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), grey, rgba(255, 255, 255, 0));
    margin-bottom: 2em;
}

#services {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.service {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1em;
    width:20em;
    min-width:0;
}

@media (max-width: 600px) {
    #services {
      flex-direction: column; /* Stack items vertically on smaller screens */
    }
}
