* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    flex-direction: column;
    gap: 20px;
}

.card {
    width: 400px;
    height: 512px;
    padding: 40px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    gap: 24px;
    border-radius: 11px;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card > img {
    width: 200px;
    height: 200px;
    border-radius: 200px;
    box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.3);
}

.name-and-profession {
    width: 100%;
    height: 93px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.name-and-profession > h1 {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-shadow: rgba(245, 245, 245, 0.5) 0px 0px 5px;
}

.name-and-profession > h2 {
    font-size: 24px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.568);
    text-shadow: rgba(245, 245, 245, 0.219) 0px 0px 5px;
}

.card > p {
    font-size: 20px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.842);
    text-align: center;
    text-shadow: rgba(245, 245, 245, 0.5) 0px 0px 5px;
    text-align: center;
}

button {
    width: 200px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 450px) {
    .card {
        width: 80vw;
        height: auto;
        padding: 20px;
    }

    .card > img {
        width: 150px;
        height: 150px;
    }

    .name-and-profession > h1 {
        font-size: 24px;
    }

    .name-and-profession > h2 {
        font-size: 18px;
    }

    .card > p {
        font-size: 16px;
    }
}
