:root {
    --white: #fff;
    --black: #000;
    --light: #ADD2FA;
    --strong: #00235F;
    --accent: #5371FF;
}

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

ul li {
    list-style: none;
}

a {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
    font-family: 'Montserrat';
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: clip;
}

main {
    flex-grow: 1;
}

[class*="__container"] {
    max-width: 1230px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

/* Header */

.header {
    padding-block: 50px;
}

.header__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.logo h2 {
    font-size: 22px;
}

.header-menu {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.header-menu a {
    transition: all 0.5s;
}

.header-menu a:hover {
    color: var(--light);
}

@media (max-width:600px) {
    .header__container {
        flex-direction: column;
        gap: 30px;
    }

    .header-menu {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* Hero */

.hero-section {
    padding-block: 50px;
    background: var(--strong);
    color: var(--white);
}

.hero__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.hero-contant {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-contant h1 {
    font-size: 35px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
}

@media (max-width:600px) {
    .hero__container {
        flex-direction: column;
    }
}

/* Advantages */

.advantages-section {
    padding-block: 50px;
    background: var(--accent);
    color: var(--white);
}

.advantages__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.advantages-contant {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.advantages-contant h2 {
    font-size: 30px;
}

.advantages-image {
    flex: 1;
}

.advantages-image img {
    width: 100%;
    border-radius: 50%;
}

@media (max-width:600px) {

    .advantages__container {
        flex-direction: column;
    }
}

/* Game */

.game-section {
    padding-block: 50px;
    background: var(--strong);
    color: var(--white);
}

.game__container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.game-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-text h3 {
    font-size: 25px;
}

.game-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
}

.game {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.game img {
    width: 100%;
    height: 300px;
    border-radius: 30px;
    border: 2px solid var(--light);
}

.game h3 {
    color: var(--white);
    font-size: 25px;
    text-align: center;
    background: var(--accent);
    border-radius: 30px;
    padding: 15px 10px;
    transition: all 0.5s;
}

.game h3:hover {
    background: var(--light);
    color: var(--strong);
}

.disclaimer {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.disclaimer h3 {
    font-size: 25px;
}

@media (max-width:600px) {
    .game-block {
        flex-direction: column;
    }
}

/* Footer */

.footer {
    padding-block: 50px;
}

.footer__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.footer-logo h2 {
    font-size: 22px;
}

.footer-menu {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.footer-menu a {
    transition: all 0.5s;
}

.footer-menu a:hover {
    color: var(--light);
}

@media (max-width:600px) {
    .footer__container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-menu {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* Form */

.contact-form__container {
    margin: 0 auto;
    text-align: center;
    max-width: 900px;
}

.contact-form__container h1 {
    margin-bottom: 20px;
    font-size: 35px;
}

.contact-form__container label {
    display: block;
    margin-bottom: 5px;
}

.contact-form__container input,
.contact-form__container textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid var(--light);
    border-radius: 4px;
}

.contact-form__container button {
    width: 100%;
    padding: 10px;
    background-color: var(--light);
    border: none;
    color: var(--white);
    border-radius: 4px;
    cursor: pointer;
    transition: 0.5s;
}

.contact-form__container button:hover {
    background-color: var(--black);
}

/* Privacy */

.privacy__container {
    padding-block: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.privacy__container h1 {
    font-size: 35px;
}

.privacy__container h2 {
    font-size: 25px;
}