*{
    box-sizing: border-box;
    outline: none;
}


body{
    margin: 0;
    padding: 0;
    font-family: "Nunito", "Montserrat", sans-serif;
    background-color: whitesmoke;
    
}

a{
    text-decoration: none;
    color: #653700;
    background: #c5b358;
    padding: 5px;
    border-radius: 5px;
}


.company-detail{
    max-width:30em;
    width: 100%;
    margin: 6em auto 0;
    height: 27em;
    text-align: center;
    box-shadow: 0 6px 7px -3px rgb(0, 0, 0, 0.35);
    color: #653700;
    background: white;
    padding: 20px;
    align-items: center; 
}

.company-detail h5{
    text-decoration:underline;
}

.c-name{
    font-weight: bold;
    text-transform: uppercase;
}

.app-details{
    padding: 20px;
    background: #c5b358;
}

.app-details h2{
    text-decoration:underline;
}

.statement{
    margin-top:90px;
    text-align: left;
    font-size: large;
    font-weight: 500;
}

.footer{
    margin-top:90px;
    font-size: large;
}

.btn{
    font-size: 10;
    text-transform: capitalize;
    font-weight:bolder;
    cursor: pointer;
    margin-top: 110px;
    
}
a:hover{
    background: #653700;
    color: #c5b358;
}



 img{
    width:50%;
    height: 30%;
    border-radius: 10px;
}


/* Medium <= 992px */
@media  screen and (max-width: 992px) {
    .sub-container{
        grid-template-columns: 1fr;
        width: 100%;
        margin: auto;
        height: 100%;
        
      
    }
    .statement{
        
        text-align: center;
        
    }


}

/* Small <= 768px */
@media  screen and (max-width: 768px) {
   .sub-container{
    grid-template-columns: 1fr;
    
    width: 100%;
   margin-top: 20px ;
    height: 100%;
    
   
   } 

   .statement{
        
    text-align: center;
    
}


.btn{
    
    margin-top:50px;
    
}


   

}

/* Extra Small <= 576px */
@media  screen and (max-width: 576px) {
    .sub-container{
        grid-template-columns: 1fr;
       
       } 

}
