:root {
    --black: #000;
    --white: #fff;
    --red: #ce0b13;
    --gray-light: #f6f6f6;
    --gray: #434445;
    --magenta: #d6125c;
    --dark-blue: #051121;
    --floorball: #29abe2;
    --football: #f15a24;
    --volleyball: #ed1e79;
    --basketball: #93278f;
    --handball: #fbb03b;
}

body {
    font-family: "Poppins", sans-serif;
}

.logo {
    width: 400px;
    margin-bottom: 1rem;
}

.bars, .close-menu {
    display: none;
}

.section-intro {
    padding-top: 16rem;
    padding-bottom: 12rem;
    text-align: center;
    background-image: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.section-intro h1 {
    font-weight: 800;
    color: var(--magenta);
    letter-spacing: 4px;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.main-section {
    background-color: var(--white);
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.main-section h1 {
    color: var(--magenta);
    font-weight: 800;
    margin-bottom: 1rem;
}

footer {
    background-image: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 6rem;
    padding-bottom: 4rem;
    color: var(--white);
    position: relative;
}

.footer-logo {
    width: 198px;
    margin-right: 2rem;
    margin-top: 4px;
}

footer a {
    color: var(--white);
    text-decoration: none;
}

footer a:hover,
footer a:focus {
    color: var(--magenta);
    text-decoration: underline;
}

.link-sport {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.link-sport img {
    width: 160px;
    transition: all 0.3s;
}

.sport-floorball:hover {
    color: var(--floorball);
}

.sport-football:hover {
    color: var(--football);
}

.sport-volleyball:hover {
    color: var(--volleyball);
}

.sport-basketball:hover {
    color: var(--basketball);
}

.sport-handball:hover {
    color: var(--handball);
}

.link-sport:hover img {
    transform: scale(1.15);
}

@media(max-width: 767px) {
    .section-intro {
        padding-top: 10rem;
        padding-bottom: 6rem;
    }
    .section-intro h1 {
        font-size: 2rem;
    }
    .logo {
        max-width: 100%;
        width: 300px;
    }
    .link-sport {
        margin-bottom: 1.5rem;
        font-size: 1.25rem;
    }
    .link-sport img {
        width: 120px;
    }
    .main-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .footer-logo {
        width: 120px;
    }
    footer {
        font-size: 0.9rem;
    }
}