* {
    padding: 0;
    margin: 0;
}

body {

    font-family: "Alan Sans", sans-serif;
    background-image: url('/images/mainBackground.jpg');
    /* background-repeat: no-repeat;
    background-size: cover ;  */
    position: relative;
}

nav {
    background-color: rgba(0, 0, 0, 0.854);
    backdrop-filter: blur(10px);
    color: white;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    position: sticky;
    top: 0;
    z-index: 2;
}

.nav-opt {
    display: flex;
}

ul li {
    margin-left: 20px;
    list-style: none;
}

ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
    /* transition: */
        /* box-shadow 0.5s ease-in-out 1s, */
        /* shadow fade-out delay 1s */
        /* transform 0.5s ease-in-out 1s; */
    
}

ul li a:hover {
    color: aqua;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6); */
    /* shadow on hover */
    /* transform: scale(1.05); */
    /* slight zoom */
    /* transition-delay: 0s; */
}

.container {
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.347);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;

}

.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.579);

}

.card {
    color: white;
    background-color: rgba(255, 255, 255, 0.102);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.135);
    padding: 40px;
    width: 700px;
    text-align: center;
    border-radius: 1rem;
    transition:
        box-shadow 0.5s ease-in-out 1s,
        /* shadow fade-out delay 1s */
        transform 0.5s ease-in-out 1s;
}

.card h1 {
    font-size: 40px;
    padding: 20px;
}

.card p {
    font: 18px;
    line-height: 1.8rem;
}

.icon {
    font-size: 1.5rem;
    display: none !important;
}

@media (max-width: 800px) {
    .card {
        width: 300px;
    }
}

@media (max-with: 466px) {
    .card {
        width: 200px;
        padding: 45px;
    }
}

@media (max-width : 636px) {
    nav ul {
        display: none !important;
    }

    .icon {
        display: flex !important;
    }
}

@media (max-width : 367px) {
    nav h2 {
        font-size: 1.3rem;
    }
}

footer {
    color: white;
    text-align: center;
    padding: 28px;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.411);
}

.offers-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;

}

.card2 {
    width: 40px;
    padding: 2.5rem;
    margin: 2rem;
    height: 100px;

}

.card2-container {
    border-radius: 40%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.card:hover {
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.6);
    /* shadow on hover */
    transform: scale(1.05);
    /* slight zoom */
    transition-delay: 0s;
}
.web{
    transition:
        box-shadow 0.5s ease-in-out 1s,
        /* shadow fade-out delay 1s */
        transform 0.5s ease-in-out 1s;
}
.web:hover{
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.6);
    /* shadow on hover */
    transform: scale(1.05);
    /* slight zoom */
    transition-delay: 0s;
    color: aqua;
}