body {
    background-color:darkblue;
    background-image: url(Dec.Suainy2024.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins;
    .poppins-light {
        font-family: "Poppins", sans-serif;
        font-weight: 300;
        font-style: normal;
      }
      
      .poppins-regular {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-style: normal;
      }
      
      .poppins-medium {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-style: normal;
      }
      
      .poppins-semibold {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-style: normal;
      }
      
    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: rgb(150, 212, 24);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    }

.Logo {
    font-size: 23px;
    color: blue;
    text-decoration: none;
    font-weight: 500;
}

.navbar a {
    font-size: 20px;
    color: azure;
    text-decoration: none;
    font-weight: 500;
    margin-left: 40px;
    transition: .3s;
}

.navbar a:hover {
color: blue;
}
.Home {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.home-cotent h1 {
    font-size: 45px;
    font-weight: 700;
    line-height:1.2;
    color: aqua;
}

.home-cotent h3 {
    font-size: 30px;
    font-weight: 500;
    color: rgb(255, 255, 255);
}

.home-cotent p {
    font-size: 16px;
    margin: 20px 0 40px;
    font-weight: 400;
    color:rgb(248, 148, 8);
    background:rgba(32, 24, 117, 0.675);
    padding: 15px;
    border-radius: 20px;
}

.home-cotent .btn-box {
    display: flex;
    justify-content: space-around;
    width: 345px;
    height: 50px;
}

.btn-box a {
    position: relative;
    right: 90px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background:rgba(0, 255, 255, 0.501);
    border: 2px solid rgb(19, 10, 103);
    border-radius: 8px;
    font-size: 16px;
    color:black;
    text-decoration: none;
    font-family: poppins;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.btn-box a:hover {
color: black;
}

.btn-box a::before {
content:'';
position: absolute;
top: 0;
left: 0;
width: 0;
height: 100%;
background:rgba(253, 131, 55, 0.821);
z-index: -1;
transition: .5s;
}

.btn-box a:hover::before{
width: 100%;
}

.home-sci {
position: absolute;
bottom: 40px;    
width: 170px;
display: flex;
justify-content: space-around;
margin-left: 155px;
}

.home-sci a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid rgb(81, 53, 206);
    border-radius: 50%;
    font-size: 25px;
    color: aqua;
    text-decoration:none;
    z-index: 1;
    overflow: hidden;
}

.home-sci a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background:rgba(253, 131, 55, 0.821);
    z-index: -1;
    transition: .5s;
}

.home-sci a:hover::before {
width: 100%;
}

.Copy-rights{
font-size: 16px;
color: black;
font-weight: 200;
position: absolute;
right: 40%;
}

@media only screen and (max-width: 768px) {
    .btn-box {
    flex: 0 0 100%;
    text-align: center;
    display: flex;
    position: relative;
    right: -70px;
}

   .home-sci {
    text-align: center;
    position: relative;
    right: 65px;
   }

   .home-cotent {
    text-align: center;
    position: relative;
    left: -10px;
   }
   
}



