* {
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 14px;
}

html {
    width: 100%;
    height: 100%;
}

body {
    background: #152140;
    padding: 30px 0 0;
}

/* grid */

.grid {
    width: 1280px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .grid {
        width: 540px;
    }
}

@media (min-width: 768px) {
    .grid {
        width: 720px;
    }
}

@media (min-width: 992px) {
    .grid {
        width: 960px;
    }
}

@media (min-width: 1200px) {
    .grid {
        width: 1140px;
    }
}

@media (max-width: 575px) {
    .grid {
        width: 94%;
    }
}

/* header */

.header_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 60px;
}

.header_wrapper .logo {
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    color: #b2ff3a;
}

.header_wrapper .logo span {
    font-size: 12px;
    color: #ccc;
    font-weight: normal;
}

.header_wrapper .language-switch {
    font-size: 12px;
    color: #ccc;
    text-transform: uppercase;
}

/* content */

section {
    background-color: #090f1e;
    padding: 30px 15px 5px;
    border-radius: 10px;
}

article h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
}

article p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* footer */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

footer small {
    font-size: 14px;
    color: #ccc;
}
