@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
padding: 0;
margin: 0;
box-sizing: border-box ;
}

body{
    font-family: "Open Sans", sans-serif;
}

a{
    text-decoration: none;
    color: inherit;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
     flex-wrap: wrap;
}

.section-title {
    font-size: 35px;
    text-align: center;
    padding-bottom: 10px;
}
.navbar-links{
    list-style: none;
    display: flex;
    gap: 20px;
}

.responsive-img{
    width: 100%;
    height: auto;
    max-width: 1420px;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
}

.hero{
    /* height: 600px; */
    /* background-image: url('/images/background.jpg'); */
    /* color: #ffffff; */
    /* text-align: right; */
    /* padding-top: 100px; */
    /* padding-right: 30px; */

}
.hero-title {
    font-size: 60px;
  

}
@keyframes btnanmn{
    from{
        background-color: #ee0c0c;
    }
    to{
        background-color: rgb(228, 224, 16);
    }
}
.hero-btn {
 background: #f10726;  
 color: #ffffff;
 border-radius: 20px;
 padding-left: 10px;
 margin-left: 20px;
 font-size: 40px;
  flex-wrap: wrap;
  animation-name: btnanmn;
  animation-duration: 5s;
  animation-iteration-count: infinite;
 
}
.hero-btn:hover{
    background-color: #f17979;
    border: 2px solid #ee0c0c;
}
.about {
    padding-top: 40px;
    padding-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
}
.about-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    justify-content: space-between;
}
.about-text {
    line-height: 2.5;
}

footer {
    background: #000000;
    padding: 40px;
    color: #ffffff;
    text-align: center;
}
@media screen and (max-width:760px) {
   .about-layout{
grid-template-columns: 1fr;
   } 
}