body {
    margin: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    height: 100vh;
    flex-direction: column;
    background-color: #f5f5f5;
    align-items: center;
    justify-content: center;
}

.container-center {
    display: flex;
    padding: 12px;
    width: 50%;
    max-width: 500px;
    margin: 0 auto;
    flex-direction: column;
    background-color: white;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    font-size: 24px;
}

p {
    font-size: 14px;
}

a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    background-color:  #007bff;
    padding: 10px 20px;
    border: none;
    flex: 1;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
    margin-top: 10px;
}

.container-link {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

a:hover {
    background-color: #0056b3;
}


.img-profpict {
    height: 72px;
    width: 72px;
    border-radius: 50%;
    object-fit: cover;
}