body {
    font-family: 'ROBOTO', sans-serif;
    background-color: #121212;
    color: #68ba7f;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;

    h1 {
        color: #FFFFFF;
    }

}

.container {
    background-color: #253d2c;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 300px;
    max-width: 80%;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 2px solid #38240d;
}

.sub-title {
    margin-bottom: 50px;
    color: #ffffe3;
}

.link {
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 20px 0;
    background-color:#3f6b2a;

    p {
        color: #ffffe3;
    }
}
.link:hover{
    transform: scale(1.03);
    transition: 0.3s;
}