body {
    background-color: #282828;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.content {
    max-width: 100%;
    max-height: 100%;
}

.card {
    background-color: #3c3836;
    border-radius: 20pt;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    padding: 25pt 20pt 25pt 25pt;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 10pt 10pt 10pt 20pt;
    min-width: 0;
}

.email {
    color: #83a598;
}

h1 {
    color: #b8bb26;
    font-size: clamp(16px, 5vw, 32px);
    overflow-wrap: break-word;
}

h2 {
    color: #d79921;
    font-size: clamp(12px, 3.5vw, 24px);
    overflow-wrap: break-word;
}

img {
    border: 3pt solid #fabd2f;
    border-radius: 50%;
    width: 150pt;
    height: 150pt;
    max-width: 30vmin;
    max-height: 30vmin;
    min-width: 100pt;
    min-height: 100pt;
}


 /* Mobile */
@media (max-width: 768px) {
    .card {
        flex-direction: column;
        padding: 20pt 10pt 20pt 10pt;
    }

    .info {
        text-align: center;
        padding: 10pt 10pt 0 10pt;
    }
}