* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #101820;
    color: white;
    background-image: url("G3images/Background.png");
    
}

.container {
    width: 90%;
    margin: auto;
    text-align: center;
    padding: 40px;
}

h1 {
    font-size: 50px;
    color: white;
}

h3 {
    margin-top: 10px;
    margin-bottom: 40px;
    color: #bdbdbd;
}

.intro {
    width: 80%;
    font-size: 32px;
    margin: 25px auto;
    text-align: center;
    line-height: 42.8px;
}

.second {
    width: 80%;
    font-size: 32px;
    margin: 35px auto;
    line-height: 42.8px;
}

.third {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 55px;
    color: white;
    margin-bottom: 15px;
}

.members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.card {

    width: 290px;
    background: #1b2735;
    border-radius: 15px;
    padding: 30px;
    text-decoration: none;
    color: white;
    transition: .3s;
    margin-top: 40px;
}

.card:hover {
    transform: translateY(-8px);
    background: #0727f4;
    color: rgb(250, 250, 251);
}

.card img {
    width: 230px;
    height: 230px;
    border-radius: 70%;
    object-fit: cover;
    border: 4px solid white;
}

.card h4 {
    margin-top: 15px;
    font-size: 22px;
}

.card p {
    margin-top: 8px;
    font-size: 15px;
}

.second {
    font-size: 35px;
}

.logo {
    border-radius: 190px;
    margin-bottom: 55px;
    margin-right: -250vh;
    width: 450px;
    display: block;
    margin: 0 auto;
    animation: introZoom 7s ease forwards;
    border: 4px solid #1524d0;
    box-shadow:
        0 0 12px rgb(58, 83, 223),
        0 0 35px rgb(207, 209, 209);
}

@keyframes introZoom {
    0% {
        transform: scale(15);
        opacity: 0;
    }

    20% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes introZoom {
    0% {
        transform: scale(8) rotate(-50deg);
        opacity: 0;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

}