*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    flex-direction: column;
    background: rgba(40, 40, 37, 0.933);
    color: bisque;
}

header{
    background: #681f9a;
    padding-top: 10px;
    padding-left: 10px;
}

.title{
    color: aqua;
    animation: slideRight 1s ease forwards;
    animation-delay: calc(.2s * var(--i));
}

main{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.container{
    width: 100%;
    display: flex;
    flex-direction: column;
    background: url("barriers-construction.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
}

.description{
    padding-top: 40px;
    padding-left: 10px;
    color: rgb(1, 10, 10);
}

.description h3{
    color: aqua;
    font-weight: 300;
    animation: slideRight 1s ease forwards;
    animation-delay: 1s;
}

.description p{
    color: rgb(20, 28, 34);
    animation: slideLeft 1s ease forwards;
    animation-delay: 1s;
}

.description .email{
    color: aliceblue;
}
.sign{
    margin-top: 10px;
    height: 20px;
    width: 120px;
    border: 2px solid rgb(149, 25, 160);
    border-radius: 4px;
    text-align: center;
    color: aqua;
}

.media{
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    padding-left: 10px;
}

.media li{
    list-style: none;
    padding-right: 20px;
}

.media li a{
    text-decoration: none;
    animation: slideTop .5s ease forwards;
    animation-delay: calc(.2s * var(--i));
}

.media li a img{
    height: 30px;
    width: 3dvi;
}

.navigation{
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    padding-left: 10px;
}

.navigation li{
    list-style: none;
    padding-right: 40px;
    animation: slideLeft 1s ease forwards;
    animation-delay: calc(.2s * var(--i));
}

.navigation li a{
    text-decoration: none;
    color: aqua;

}
.content{
    width: 100%;
    padding-left: 10px;
    padding-top: 20px;
    color: azure;
    display: none;
}

.details{
    padding:3px 1px 0px 3px ;
    overflow-y:scroll;
}

/*signup pop-up page*/
.signup{
    visibility: hidden;
    position: absolute;
    top:5%;
    left: 50%;
    right: 50%;
    height: 400px;
    width: 300px;
    border: 2px solid aquamarine;
    border-radius: 5px;
}

#about{
    width: 100%;
    padding: 10px 5px 10px 10px;

}

#about p{
    color: aliceblue;
}
#services{
    width: 100%;
    padding: 10px 5px 10px 10px;
}

#services p{
    color: aliceblue;
}
  /* Hide all content sections by default */
.content-section {
    display: none;
}

.htitle{
   /* font-size:20em;*/
    font-weight: 300;
}

#feeds{
    display: flex;
    flex-wrap: wrap;
    padding: 10px 5px 10px 10px;
}

#feeds p{
    color: aliceblue;
}

.feed{
    width: 200px;
    border: 2px solid #825f9a;
    border-radius: 4px;
    margin-left: 10px;
    margin-top: 30px;
    margin-bottom: 10px;   
}

.feed video{
    height: 200px;
    width: 200px;
    background-size: cover; 
}

.navtitle{
    position: absolute;
    color: aquamarine;
}
#title{
    color: aquamarine;

}

.ftitle{
    color: aqua;
}

.text{
    color: aliceblue;
}

/*animation keyframes */

@keyframes slideRight{
    0%{
        transform:translateX(-100px);
        opacity: 0;
    }

    100%{
        transform:translateX(0);
        opacity:1;
    }
}


@keyframes slideLeft{
    0%{
        transform:translateX(100px);
        opacity: 0;
    }

    100%{
        transform:translateX(0);
        opacity:1;
    }
}

@keyframes slideTop{
    0%{
        transform:translateY(-100);
        opacity: 0;
    }

    100%{
        transform:translateY(0);
        opacity:1;
    }
}