body{
    margin: 0;
    
    background-color: gray;
}

.grupo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20vh;
}
.grupo img{
	width:17vw;
    height: 280px;
	}
.produto {
    padding: 5px;
    width: 20vw;
    border-radius: .4rem;
    text-align: center;
    color: white;
    margin: 0 10px;
    background-color: rgb(0, 0, 3);
    font-size: 1.1pc;
    align-items:center;
}

h1{
    font-size: 24px;
}

nav{ 
top: 0;
margin: 0%;
background-color: rgba(50,50,255,0.5);
height:4vw ;
display:flex ;
align-items:center;
justify-content:center;
position: fixed;
width: 100%;
}
nav a{
    font-size: 22px;
    color: white;
    font-weight: bold;
    text-align:center;
    padding: 10px 40px;
    text-decoration: none;
}
nav a:hover{
    background-color: black;
    color: chocolate;
    border-radius: 20px;




}