body {
    margin: 0px;
    background-color: aliceblue;
}

button {
    font-size: 16px;
    text-align: center;
    border-radius: 8px;
    padding: 10px 20px;
}
    

.page-nav {
    background-color: #E67E22;
    border: 2px solid black;
    position: relative;
    border-radius: 20px;
    font-family: 'Permanent Marker', cursive;
}

.page-nav h1 {
    margin: 20px;
}

.button-checkout {
    background-color: white;
    color: black;
    border: 2px solid #008CBA; /* Blue */
    transition-duration: 0.4s;
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.button-checkout:hover {
    background-color: #008CBA; /* Blue */
    color: white;
}

.page-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color:lightsalmon;
    border-radius: 20px;
    border: 2px solid black;

}
.contenedor-video{
    position: relative;
    overflow: hidden;
    padding-top: 36.25%;
    border: 3px solid red;
    }
.contenedor-video iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }
   
.caja-fixed{
	background: white;
	position: fixed;
	top: 100px;
	opacity: .2;
	font-family: 10px;
	font-size: 55px;
	font-style: inherit;
	width: 1350;
	text-align: center;
}
.product-container {
    margin: 16px;
    padding: 2px 20px;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.1);
    background-color:thistle;
    border-radius: 30px;
    border: solid 2px;  
    font-size: 25px;
}

.product-container:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }

.product-container img {
    width: 290px;
    border-radius: 20px;
    border: solid 2px;

}

.product-container h1 {
    margin-bottom: 10px;
    margin-left: 15px;
}

.button-add {
    background-color: white;
    color: black;
    border: 2px solid #4CAF50; /* Green */
    transition-duration: 0.4s;
    position: absolute;
    right: 15px;
    bottom: 10px;
}

.button-add:hover {
    background-color: #4CAF50; /* Green */
    color: white;
} 
.footer{
    text-align: center;
    background-color: rgb(71, 177, 61);
    margin: 1px;
    border-radius: 20px;
    border: solid 2px black;
    padding: 2px;
    width: 100%;
    margin-block: 20px;
color: white;
}

    