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

.hero {
    width: 100%;
    height: 100vh;
    background: #d1d1d1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    width: 400px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: #333;
}

.card h1 {
    font-weight: 500px;
    color: #000;
}

.card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-top: 40px;
    margin-bottom: 30px;
}

label {
    display: block;
    width: 150px;
    background: #e3362c;
    color: #fff;
    padding: 8px;
    margin: 10px auto;
    border-radius: 5px;
    border-radius: pointer;
}

/* Make card clickable */

input {
    display: none;
}

/* Hide upload box */
