* {
    margin: 0;
    padding: 0;
}

body {
    color: #636b6f;
    font-family: 'Nunito', sans-serif;
}

a {
    text-decoration: none;
}

header {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(52 74 94);
}

.header__content {
    margin: auto;
}
.max_container {
    max-width: 1200px;
}
.header__logo {
    text-align: center;
    padding: 10px;
}
.header__logo_mobile {
    width: 100px;
}
.header__logo_desktop {
    display: none;
}

.content {
    margin-top: 120px;
}
.content__title {
    font-size: 46px;
    text-align: center;
    font-weight: normal;
}
.content__links {
    text-align: center;
}
.content__links a {
    font-size: 22px;
}
.content__logo img {
    width: 200px;
}

@media screen and (min-width: 360px) {
    .content__title {
        font-size: 50px;
    }
}

@media screen and (min-width: 500px) {
    .header__logo_mobile {
        width: 120px;
    }
    .content {
        margin-top: 200px;
    }
    .content__title {
        font-size: 68px;
    }
}

@media screen and (min-width: 780px) {
    .header__logo_mobile {
        display: none;
    }
    .header__logo_desktop {
        display: block;
        width: 290px;
        margin: auto;
        padding: 20px;
    }
    .content {
        margin-top: 150px;
    }
}
