body {
    font-family: 'Segoe UI', Verdana, sans-serif;
    background: linear-gradient(130deg, rgb(108, 247, 240), white) no-repeat fixed;
    margin: 0;
    padding: 20px;
}

.foto-box {
    display: flex;
    align-items: center;
    border: 1px solid black;
    min-height: 180px;
    border-radius: 20px;
    padding: 15px;
    background-color: rgba(97, 252, 252, 0.15);
    margin-bottom: 25px;
}

img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: rgb(10, 18, 90);
    object-fit: cover;
    margin-right: 20px;
    padding: 5px;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    border: 1px solid black;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: rgb(194, 223, 248);
    border-radius: 16px;
    margin: 0 auto;
    width: 70%;
    padding: 20px;
}

.link {
    border: 1px solid black;
    background-color: rgb(212, 221, 236);
    color: #111010;
    width: 120px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    margin: 0 auto;
}

.link:hover {
    background-color: rgb(112, 180, 224);
}
