*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    text-decoration: none;
}
html,body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #F5F5F5; /* white-ish */
}
.container{
    margin: 5% auto;
    width: 90%;
    background-color: rgba(192,192,192,.75); 
    border: 1px solid black;
    border-radius: 10px;

}
.content-box{
    display: grid;
    grid-template-columns: repeat(10,1fr);
    grid-template-rows: 75px repeat(2,160px);
    gap: 5px;
    margin: 10px;
}
.image{
    grid-row: 1/5;
    grid-column: 1/5;
    overflow: hidden;
}
.image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 8px;
    border-radius: 20px;
}
.head-title{
    grid-column: 5/11;
    text-align: center;
    color: black;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 1.35rem;
}
.head-title p{
    text-align: center;
    color: black;
	font-family: 'Roboto', sans-serif;
    font-weight: 500;
    margin-top: 8px;
}
.uline {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-color: black;
  text-decoration-thickness: 2px;
}
.details{
    grid-column: 5/11;
    grid-row: 2/4;
	font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: .75rem; 
}


.button{
	display: flex;
	justify-content: center;
}

#btn1{
	width: 30%;
	height: auto;
	cursor: pointer;
}

.attention-color{
	color: #ff0000; /* #8b0000; */
}


/*Resposive*/
@media (max-width: 700px){
    .content-box{
        grid-template-rows: 70px repeat(5,125px);
        gap: 2px;
    }
    .head-title{
        grid-column: 1/-1;
    }
    .image{
        grid-row: 2/4;
        grid-column: 1/-1;
    }
    .details{
        grid-column: 1/-1;
        grid-row: 4/-1;
        font-size: 10px;
        text-align: left;
        width: 95%;
       /*  margin: auto; */
	   margin-top: 1px;
    }
    .head-title h2{
        font-size: 18px;
    }
    .head-title p{
        font-size: 15px;
    }
	
	#btn1{
		width: 50%;
		height: auto;
		cursor: pointer;
	}
	
}