@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.navbar {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: #d4d7de;
    width: 100%;
    height: 70px;
    z-index: 1;
}
a:hover {
    color:darkslategray;
    padding: 10px;
}
.nav {
    display: flex;
    justify-content: center;
    list-style: none;
}
a {
    transition: all 0.3s ease;
}
.logo {
    flex: 1 1 auto;
    margin-left: 5%;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 35px;
}
.header {
    margin: 20px;
    color: #000;
    font-size: 25px;
    text-decoration: none;
    text-transform: uppercase;
}

.card {
    width: 100%;
    background-color:antiquewhite;
    border-radius: 30px;
    padding: 2%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.Document {
    margin: 20px;
    color:antiquewhite;
    font-family:Arial;
    font-size: 30px;
    text-decoration:underline;
    text-transform: uppercase;
}
.video {
    text-align: justify;
    border-radius: 30px;
    padding: 2%;
    float: left;
    transition: all 0.3s ease;
}
.picture {
    text-align: justify;
    border-radius: 30px;
    padding: 2%;
    float: right;
    transition: all 0.3s ease;
}
.banner-area {
    margin: 0;
    padding: 0;
    background-image: linear-gradient(125deg, #2c3e50, #27ae60, #2980b9, #e74c3c, #8e44ad, white);
    background-size: 500%;
    animation: bganimation 15s infinite;
    width: 100%;
    height: 100vh;
}
.card img {
    margin-left:5%;
    margin-top:3%;
    width: 70%;
    height: 550px;
    border-radius: 20px;
    margin-bottom: 2%;
}

.card h2 {
    font-size: 2rem;
    margin-bottom: 2%;
}

.card:hover {
    transform: scale(1.05);
}

.video:hover {
    transform: scale(1.05);
}
.picture:hover {
    transform: scale(1.05);
}
@keyframes bganimation {
    0%{
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.Info-area, .Contact-area{
    color:black;
    position:relative;
    display:flex;
    justify-content:space-around;
    align-items:center;
    width:100%;
    height:1200px;
}

.Project-area {
    position:relative;
    display: flex;
    background:linen;
    background-size: 500%;
    animation: bganimation 15s infinite;
    justify-content: space-around;
    text-align: justify;
    width: 100%;
    height: 3000px;
}

.text-part{
    width:80%;
    height:90%;
}
h1 {
    font-size: 70px;
    font-family: 'Audiowide', cursive;
}
h2 {
    font-size: 40px;
    font-family: 'Audiowide', cursive;
}
p {
    font-size: 24px;
    line-height: 40px;
    color:black;
}
.Contact-area p {
    font-size: 25px;
    color: white;
}

.Contact-area {
    background: #262626;
    height:500px;
    color:white;
}
.Info-area {
    background: #262626;
    color: white;
}
.top {
    position: relative;
}
    .top p {
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-40%, -50%);
        font-size: 150px;
        font-family: 'Audiowide', cursive;
        color:white;
        text-align: center;
        z-index: 1;
    }

 html{
     scroll-behavior:smooth;
 }