*{
    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{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 20px 16%; 
}

.title{
    font-size: 60px;
    font-weight: 550;
    text-align: center;
    margin: 30px 0px 60px 0px;
}

.text-container{
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.text{
    font-size: 50px;
    width: fit-content;
}

.line{
    flex-grow: 1;
    height: 3px;
    background-color: white;
    margin-left: 30px;
}

.flex-box{
    position: relative;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin-bottom: 40px;
    padding: 15px 15px 30px 30px;
    transition: transform 1.1s;
}

.flex-box:hover{
    transform: scale(1.05);
}

.flex-box::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top: 3px solid white;
    border-left: 3px solid white;
    transform-origin: top left;
    box-shadow: -6px 6px 15px;
    transition: transform 0.7s;
    transform: scale(0);
}

.flex-box:hover::after{
    transform: scale(1);
    transform-origin: top left;
}

.photo{
    width: 400px;
}

.reels-box{
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin-bottom: 40px;
    padding: 15px 15px 30px 30px;
}

.video{
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    width: 400px;
    height: 545px;
    transition: transform 0.5s;
}

.video:hover{
    transform: scale(1.05);}

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 .title{
        font-size: 50px;
        margin: 20px 0px 40px 20px;
    }


    .text-container{
        flex-direction: column;
        align-items: flex-start;
    }

    .text{
        font-size: 30px;
        margin-top: 20px;
        font-weight: 600;
    }

    .flex-box{
        flex-direction: column;
        align-items: center;
        padding: 15px 0px 30px 0px;
        gap: 20px;
    }

    .photo{
        width: 300px;
    }

    .reels-box{
        flex-direction: column;
        align-items: center;
        padding: 15px 0px 30px 0px;
        gap: 20px;
    }

    .video{
        width: 300px;
        height: 400px;
    }

        footer>a, footer>p{
        font-size: 1rem;
    }

}
