@font-face {
    font-family: 'Adorage';
    src: url('fonts/Adorage.woff2') format('woff2'),
        url('fonts/Adorage.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #ffffff;
}

.container {
    text-align: center;
    background-color: #6a4e36;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

.container img {
    width: 150px;
    border-radius: 50%;
    border: 3px solid #baa290;
    margin-bottom: 20px;
}

.container h1 {
    margin: 0;
    font-size: 36px;
    color: #ffffff;
    font-family: 'Adorage', sans-serif;
    font-weight: 700;
}

.container h2 {
    margin: 5px 0 20px 0;
    font-size: 22px;
    color: #deddd9;
    font-weight: 400;
}

.container p {
    color: #deddd9;
    margin-bottom: 20px;
    font-size: 16px;
}

.icons {
    margin-bottom: 30px;
}

.icons a {
    margin: 0 15px;
    text-decoration: none;
    color: #baa290;
    font-size: 28px;
    transition: color 0.3s;

}

.icons a:hover {
    color: #deddd9;
}

.link {
    display: block;
    background-color: #deddd9;
    color: #6a4e36;
    padding: 15px;
    margin: 15px 0;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
}

.link:hover {
    background-color: #baa290;
    color: #ffffff;
}