/* Selectores de elementos */
@import url('https://fonts.googleapis.com/css2?family=Butterfly+Kids&family=Patrick+Hand&display=swap');
:root {
  --primary: rgb(181, 132, 185); 
  --primary-light: rgb(243, 209, 214); 
  --primary-dark: rgb(75, 3, 75); 
}

body, p, li, ol, ul, label, input, .content {
     font-family: "Patrick Hand", cursive;
}
body {
    background-color: rgb(243, 209, 214); 
} 

h1, h3, h4, footer h5 { 
    font-family: "Butterfly Kids", cursive;
    color: rgb(75, 3, 75);
}

h3, h4, h5 {
    color: rgb(75, 3, 75);
}

.card {
    border: 2px solid rgb(75, 3, 75) !important; 
    background-color: rgb(255, 245, 247); 
    box-shadow: 5px 5px 0px rgb(181, 132, 185); 
    text-align: center;
}

nav {
    background-color: rgb(230, 205, 230) !important; 
    border-bottom: 2px solid rgb(75, 3, 75) !important;
}

nav a {
    color: rgb(75, 3, 75) !important;
    font-weight: bold;
}

nav a:hover {
    color: white !important;
    background-color: rgb(181, 132, 185) !important;
}

.centrado {
    display: block;
    margin: 0 auto;
    width: 85%;
    border-radius: 10px; 
}
#arriba {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 10px;
}
footer {
    background-color: rgb(230, 205, 230);
    padding: 20px;
    text-align: center;
    border-top: 2px solid rgb(75, 3, 75);
    margin-top: 40px;
}