* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #15ac01;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    background-color: #0066ff;
    margin-top: 20px;
    height: 960px;
    margin-bottom: 20px;
    border-radius: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    margin-top: 20px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    width: 80%;
    max-width: 1200px;
}

.profile-card {
    background-color: #fff;
    color: #ff0000;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.profile-card img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.profile-card h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.profile-card a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff0000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.profile-card a:hover {
    background-color: #d40000;
}

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

.card {
    float: left;
    margin-left: 18px;
    margin-top: 20px;
}

.card img {
    width: 200px;
    height: 250px;
}

