/* Body and Background Color */
body {
    background: linear-gradient(to bottom,  #0a2f3d, #b84d5b, #f4a261);
    ; /* Blue background */
    font-family: 'Roboto', sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

/* Container for content */
.container {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent background */
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
    color: aliceblue;
}
.fa-solid{
    color:white
}
h3{
    text-align: center;
}
ul{
    list-style: none;
}