html, body {
    margin: 0;
    height: 100%;
    background-size: cover;
    font-family: 'Roboto', sans-serif;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.main_container {
    text-align: center;
    max-width: 800px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.left_container {
    text-align: left;
    max-width: 800px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.name {
    font-size: 36px;
    margin-bottom: 2px;
    color: #4B8A4E;
    font-family: 'Roboto Slab', serif;
}

.position {
    font-size: 20px;
    color: #4B8A4E;
    font-family: 'Pacifico', cursive;
}

.btn {
    background-color: #4B8A4E;
    font-size: 14px;
    color: #ffffff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #74A278;
    color: #ffffff;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}