
*{
margin:0;
padding:0;
box-sizing:border-box;
}


body{
font-family: Arial, Helvetica, sans-serif;
background:#f4f6f9;
color:#333;
line-height:1.6;
padding:30px;
}


.logo{
text-align:center;
margin-bottom:40px;
}

.logo img{
width:160px;
}


body > div:last-of-type{
max-width:900px;
margin:auto;
background:white;
padding:40px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}


body > div:last-of-type img{
display:block;
margin:auto;
width:200px;
height:200px;
object-fit:cover;
border-radius:50%;
margin-bottom:20px;
border:5px solid #f1f1f1;
}


h1{
text-align:center;
font-size:26px;
margin-bottom:5px;
}


h2{
text-align:center;
color:#777;
margin-bottom:25px;
font-size:18px;
}


p{
text-align:justify;
margin-bottom:15px;
font-size:15px;
}



.btn-volver {
    display: block;
    width: fit-content;
    margin-left: 40px;
    margin-top: 40px;
     display: inline-block;
    margin-top: 40px;
    padding: 12px 25px;
    background-color: #34495e;
    color: #e4e7ea;
    text-decoration: none;
    border-left: 4px solid #5dade2;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;

}

.btn-volver:hover {
    background-color: #3d566e;
    padding-left:100px;
}

@media (max-width:480px){

.logo img{
width:120px;
}

body > div:last-of-type{
padding:20px;
}

body > div:last-of-type img{
width:150px;
height:150px;
}

h1{
font-size:20px;
}

h2{
font-size:16px;
}

}