* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    background: #111;
    color: white;
    padding: 15px;
    text-align: center;
}

header h1 {
    font-size: 24px;
}
h3 {
    font-size: unset;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.hero {
    background: url('gym4.webp') center/cover no-repeat;
    background-size: cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-text {

    margin-top:214px;
    
}

.container {
    padding: 40px 20px;
    max-width: 1100px;
    margin: auto;
}

.about {
    display: flex;
    gap: 20px;
    align-items: center;
}

.about img {
    width: 300px;
    border-radius: 10px;
}

.services {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 250px;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.gallery img {
    width: 100%;
    display: block;
}

.social a {
    display: inline-block;
    margin: 10px;
    text-decoration: none;
    color: white;
    background: #e63946;
    padding: 10px 15px;
    border-radius: 5px;
}

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
    }

    .hero {
        height: 40vh;
    }

    header h1 {
        font-size: 20px;
    }

}