*{
    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;
    text-align: center;
}

.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;   
}

.bg-container{
    width:60%;
    height: 500px;
    background-color: gray;
    position: fixed;
    top: 150px;
    left: 300px ;
}

.imgme {
    max-width: 200%; 
    height: auto;  
    position: fixed;
    top: 280px;
    left: 19% ;
    opacity: 0.1;
}

.bg-container h1,h4{
    margin-top: 10px;
    text-align: right;
    margin-right: 20px;
}

.bg-container h1{
    color:#F4A6C0;
}
.bg-container h4{
    margin-top: 10px;
    color: #FFF6E9;
}

.ul{
    list-style-type: none;
}

.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;
    }
}

