body{
    margin: 0 auto;
    margin-inline: 5%;
    padding: 0;
    box-sizing: content-box;
    background-color: rgb(46, 70, 71);
}
body {
  margin: 0 5%;        /* Mobile first */
}

@media (min-width: 768px) {
  body {
    margin: 0 30px;
  }
}

@media (min-width: 1024px) {
    body {
    margin: 0 50px;
  }
}




/*-----------------------------Navbar--------------------------------------*/
li{
    padding: 1rem;
    height: 2.5rem;
    background-color: rgb(128, 134, 105);
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.a-img img{
    height: 2.5rem;
    object-fit: cover;
}
.a-list{
    text-decoration: none;
    color: rgb(254, 254, 254);
}
.a-list:hover{
    color: rgb(1, 1, 1);  
}






/*--------------------------------------Description-----------------------------------*/
.main{
    height: 20rem;
}
.head-img{
    position: relative;
    top: 0;
}
.head{
    text-align: center;
}
.head h2{
    font-size: 1.5rem;
    color: beige;
}
.projects{
    padding: 0.8rem;
    height: 15rem;
    width: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    column-gap: 8px;
    flex-wrap: nowrap;
    overflow: hidden;
}
.projects-img{
    height: 100%;
}
.projects-img img{
    height: 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}





/*------------------------------------------Long/Short Terms Invest-----------------*/
.terms{
    padding: 1.5rem;
    height: 15rem;
    background-color: antiquewhite;
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: center;
    max-width: 100%;
}
.terms-short{
    padding: 1rem;
    max-width: 100%;
    text-align: left;
}

.terms-long{
    padding: 1rem;
    max-width: 100%;
    text-align: left;
}



/*---------------------------------------Investment Options--------------------------------------*/
.options{   
    margin: 2% 0;
    padding: 2rem;
    background-color: azure;
    align-items: baseline;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
    font-size: 0.8rem;
    border-radius: 0.8rem;
}
.opt-content{
    width: 100%;
    overflow: hidden;
}
.opt-content h4{
    color: red;
    font-size: 0.8rem;
}
.opt-content img{
    height: auto;
    width: 100%;
    object-fit: cover;
    display: block;
}




/*---------------------------------------About-----------------------------------------*/
.words{
    padding: 2rem;
    background-color: azure;
    align-items: baseline;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    border-radius: 0.8rem 0.8rem 0 0;
    border-style:dashed;
}
.words-div{
    text-align: left;
}