*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
    background : #FDE2E4;
    color: #D982B5;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    margin-left: 30px;
    font-size: 30px;
    color: #756C83;
    text-decoration: none;
    font-weight: 600;
}

.navbar a{
    font-size: 25px;
    color: #756C83;
    font-weight: 500;
    margin-left : 35px;

}

.navbar a:hover, navbar a:active{
    color: #756C83;   
}

.home {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 20%;
}

.home-content{
    max-width: 600px;
}

.home-content h3{
    color:#756C83;
}

.home-content p{
    font-size: 20px;
}

.home-content .btn-box{
    width: 345px;
    height: 50px;
}

.btn-box a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background:#756C83;
    border: 2px solid #C490A4;
    border-radius: 8 px;
    font-size: 15px;
    color: #081b29;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
}

.home-sci{
    position: absolute;
    bottom: 40px;
    width: 170px;
    display: flex;
    justify-content: space-between;
}

.home-sci a{
    position: relative;
    display : inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.imgme {
    max-width: 200%; 
    height: auto; 
    margin-top: 20px; 
}

.ribbon-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none; 
}  
.ribbon {
    background-color: pink;
    position: absolute;
    top: -100px;
    border-radius: 10px;
    animation: dropRibbon 5s linear infinite;
} 

.ribbon:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.ribbon:nth-child(2) {
    left: 30%;
    animation-delay: 1s;
}

.ribbon:nth-child(3) {
    left: 50%;
    animation-delay: 2s;
}

.ribbon:nth-child(4) {
    left: 70%;
    animation-delay: 0.5s;
}

.ribbon:nth-child(5) {
    left: 90%;
    animation-delay: 1.5s;
}
  
@keyframes dropRibbon {
    0% {
        top: -100px;
        opacity: 1;
    }
    80% {
        top: 100vh;
        opacity: 1;
    }
    100% {
        top: 100vh;
        opacity: 0;
    }
}


