*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none;
    cursor: url("cursor.png"), auto;
}

body{
    background-image: linear-gradient(#ffe9fa, #dce3ff);
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    min-height: 100%;
    padding-top: 100px;
}

header{
    width: 100%;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    height: 100px;
    align-items: center;
    z-index: 99;
    padding: 10px 100px 10px 60px;
    background-color: white;
}

.logo{
    height: 65px;
}

nav a{
    position: relative;
    margin-left: 70px;
    font-size: 19px;
    font-weight: 551;
    color: rgb(0, 0, 0);
}

nav a:hover, .active{
    color: #f2bce5;
}

nav a::after{
    content: '';
    position: absolute;
    left: 0;
    border-bottom: 3px solid #f2bce5;
    height: 3px;
    width: 100%;
    bottom: -5px;
    transform: scaleX(0);
    transition: transform 0.5s;
    transform-origin: right;
}

nav a:hover::after{
    transform: scaleX(1);
    transform-origin: left;
}

/* Stopper*/

main .hourly{
    font-size: 70px;
    margin: 30px 0px;
}


.flex-container{
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 20px;
    padding: 20px 200px 10px 200px;
}
    
.packages{
    display: flex;
    gap: 80px;
}

.box{
    background-image: linear-gradient(to top,  rgb(255, 255, 255),rgb(255, 208, 230) );
    width: 35%;
    height: auto;
    padding: 20px 0px;
    border: 3px solid black;
    border-radius: 20px;
    box-shadow: -6px 6px 20px rgb(111, 71, 118);
    margin-bottom: 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.title{
    text-align: center;
    font-size: 40px;
    font-weight: 600;
}

.info, ul, li{
    margin: 0px 20px;
    font-size: 1.2rem;
    margin-top: 15px;
    line-height: 1.5;
}

.info{
    margin-top: 30px;
}

.price{
    width: 170px;
    align-self: center;
}

.flex-container>h3{
    margin-top: 20px;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.flex-container>.text1{
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
}

footer{
    padding: 20px 0px 30px 0px;
    border-top: 3px solid #fff0fc;
}

footer>a, footer>p{
    display: block;
    text-align: center;
    font-size: 1.2rem;
    color: black;
}

span{
    color: blue;
}

@media (max-width: 480px){

    header{
        display: flex;
        flex-direction: column;
        height: 130px;
    }

    .logo{
        height: 65px;
        display: block;
    }

    nav{
        display: flex;
    }

    /* Stopper*/

    main .hourly{
        font-size: 40px;
        margin: 20px 0px;
    }
    
    .packages{
        flex-direction: column;
        align-items: center;
    }

    .flex-container{
        padding: 20px 20px 10px 20px;
    }

    .box{
        width: 80%;
    }

    .title{
        font-size: 30px;
    }

    .info, ul, li{
        font-size: 1.1rem;
    }
    
    .price{
        width: 130px;
    }

    .flex-container>h3{
        font-size: 2rem;
    }

    .flex-container>.text1{
        font-size: 1rem;
        margin-bottom: 20px;
    }

    footer>a, footer>p{
        font-size: 1rem;
    }

}