33 lines
386 B
CSS
33 lines
386 B
CSS
body {
|
|
background-color: aquamarine;
|
|
/*text-align: center;*/
|
|
}
|
|
|
|
.logo-container {
|
|
display: flex;
|
|
}
|
|
|
|
.logo-container>img {
|
|
max-width: 60px;
|
|
max-height: 60px;
|
|
}
|
|
|
|
p {
|
|
font-size: 20px;
|
|
}
|
|
|
|
p.precio {
|
|
font-size: 22px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.main h3 {
|
|
font-size: 22px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
img.producto {
|
|
max-width: 600px;
|
|
max-height: 400px;
|
|
}
|