@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #02081b;
    color: #74faff;
    line-height: 1.6;
    padding: 40px 20px;
}

header {
    max-width: 640px;
    margin: 0 auto 30px auto;
}

header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #b30000;
}

.card {
    background-color: #1d2028;
    border: 1px solid #b007f3;
    border-radius: 35px;
    padding: 30px;
    margin-bottom: 20px;
}

.image-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.card img {
    width: 250px;
    height: 250px;
    border-radius: 25%;
    object-fit: cover;
    margin-bottom: 16px;
    display: block;
   
}
