*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Inter", sans-serif; */
   
}

body {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
}



.main{
    margin: 10rem 0 5rem;
    padding:0;
}

.hero-container{
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-areas: "header home-img";
}

.hero-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
    
    @media (min-width: 1200px) {
      .hero-container {
        max-width: 1350px;
        padding-right: 60px;
        padding-left: 60px;
     } 
    }

    @media (min-width: 990px){
        .hero-container{
            padding-right: 60px;
            padding-left: 60px;
        }
    }

    

.home-content{
    grid-area:header;
}

.home-line-1{
    font-weight: 600;
    font-size:1.25rem;
    display: flex;
    align-items: center;
}

.home-check-img{
    background-image: url("./main-page/image\ 204.png");
    width:32px;
    height:32px;
    display: inline-block;
    margin-right:1rem;
}

.green-txt{
    color:#48BF84;
}

.heading{
    font-weight:600;
    font-size:3rem;
    margin-top:3rem;
}

.home-line-3{
    font-weight:500;
    font-size:1.1rem;
    margin-top:1rem;
}

.home-buttons{
    display: flex;
    align-items: center;
    margin-top:3rem;
}

.btn-github{
    background-color:#48BF84;
    text-decoration: none;
    color:white;
    padding: 0.875rem 2.25rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.3125rem;
    margin-right:1rem;
    max-width:288px;
}

.btn-github svg{
    height:27px;
    width:27px;
    fill:white;
    margin-right:0.5rem;
}

.btn-register{
    background-color: #0d2129;
    color:white;
    text-decoration:none;
    padding: 0.875rem 2.25rem;
    font-size: 1.25rem;
    line-height: 1.5;
    max-width:229px;
    border-radius: 0.3125rem;
}

.home-buttons-mobile{
    display: none;
}

.home-line-4{
    color:#48BF84;
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-top:1rem;
}

.home-images-container{
    grid-area:home-img;
    display: flex;
    justify-content: center;
}

.hero-img{
    width:100%;
    object-fit: contain;
}



  
  

@media screen and (min-width: 1200px) {
    .laptop-nav-container {
      max-width: 1350px;
    }
}

@media screen and (max-width: 1200px){
    .hero-container{
        grid-template-columns:3fr 2fr;
    }
    
    .home-buttons{
        display: block;
    }

    
    .btn-register{
        display: inline-block;
        margin-top:1rem;
    }
}

@media screen and (max-width: 990px){
    .main{
        margin:8rem 0 2rem;
    }
    
    .hero-container{
        grid-template-columns: 1fr;
        grid-template-rows:auto;
        grid-template-areas: "header"
        "home-img";
        padding-right:32px;
        padding-left:32px;
    }

    .heading{
        font-size:2rem;
        font-weight: 900;
        margin-top:1rem;
    }

    .btn-register{
        display: none;
    }

    .btn-register-mobile{
        background-color: #0d2129;
        color:white;
        text-decoration:none;
        padding: 0.875rem 2.25rem;
        font-size: 1.25rem;
        line-height: 1.5;
        max-width:229px;
        border-radius: 0.3125rem;
    }

    .home-images-container{
        margin-top:3rem;
        flex-direction: column;
    }

    .home-buttons-mobile{
        margin-top:3rem;
        margin-bottom: 3rem;
        display: block;
    }
}