@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 20px;
}

body, html {
    background-color: #96b1c5;
    margin: 0;
    height: 0;
    scroll-behavior: initial;
    font-family: 'Playfair Display', serif;
    
}

/*Header*/

.header {
    background: rgba(11, 48, 76, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 0 ;
    width: 100%;
}

/*Logo*/


.mover {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    margin-right: auto;
}

/*Menu de navegación*/

.header .nav-links {
    list-style: none;
}

.header .nav-links li {
    display: inline-block;
    padding:  20px;
}

/*Efectos en los links*/

.header .nav-links li:hover {
    transform: scale(1.1);
}

.header .nav-links a {
    font-size: 700;
    color: aliceblue;
    text-decoration: none;
}

.header .nav-links li:hover {
color: blue;
}

/*Botón de Registro*/

.btn button {
    font-weight: 700;
    color: #587d9a;
    padding: 10px 25px;
    background-color:#D9D9D9;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease 0;
    margin: 10px;

}

/*Efecto para el botón*/

.header .btn button:hover {
    background-color: #345269;
    color: #7d8089;
}

/*Fondo*/

.video-fondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.video-fondo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contenedor {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 100px auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

input { /* Estilos para los campos de entrada */
  width: 90%;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button { /* Estilos para el botón */
  padding: 10px 20px;
  background-color: #6a5acd;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #5a4ebc;
}

.footer {
  text-align: center;
  color: white;
  margin-top: 50px;
}

h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 50px;
  color: #c5e0f7;
}

.card { /* Estilos para la tarjeta de regalo */
  background-color: #444;
  border-radius: 15px;
  padding: 20px;
  width: 300px;
  margin: 0 auto 20px auto;
  text-align: center;
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

.card h2 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.card p {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.mascota {
  font-size: 5rem;
  user-select: none;
}

label {
  display: block;
  text-align: center;
  margin: 10px auto;
  font-weight: bold;
}

input[type="color"], select {
  display: block;
  margin: 5px auto 20px auto;
  padding: 5px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  width: 150px;
  font-size: 1rem;
}


    