* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
}

.contenedor {
    max-width: 600px;
    padding: 50px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: #525252;
}

img {
    max-width: 100%;
    height: auto;
    margin: 25px 0;
}

h2 {
    font-size: 20px;
    font-weight: bold;
}

p {
    margin: 5px 0;
    color: #525252;
    font-weight: bold;
    font-size: 16px;
	line-height: 24px;
}

a {
    text-decoration: none;
    color: blue;
    font-weight: bold;
}
