@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #F5F5F5;
}

header {
    height: 100px;
}

.container__header {
    max-width: 1200px;
    height: 100%;
    margin: auto;
    padding: 30px;
    padding-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 180px;
}

.menu nav ul {
    display: flex;
    padding: 0;
    margin: 0;
}

.menu nav ul li {
    list-style: none;
    padding: 0 20px;
}

.menu nav ul li a {
    font-size: 16px;
    text-decoration: none;
    color: #000;
    transition: opacity 300ms;
}

.menu nav ul li a:hover {
    opacity: 0.6;
}

main {
    max-width: 1200px;
    padding: 40px;
    margin: auto;
}

.cover {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.text__information-cover {
    width: 50%;
}

.text__information-cover h1 {
    font-size: 50px;
}

.text__information-cover p {
    font-size: 18px;
    margin-top: 40px;
}

.terms {
    margin-top: 40px;
}

.terms h2 {
    font-size: 24px;
    margin-top: 20px;
    color: #333;
}

.terms p {
    font-size: 16px;
    margin-top: 10px;
    color: #666;
}

@media (max-width: 1024px) {
    .container__header,
    main {
        padding: 20px;
    }

    .text__information-cover h1 {
        font-size: 40px;
    }

    .text__information-cover p {
        font-size: 16px;
    }
}

@media (max-width: 920px) {
    .text__information-cover {
        width: 100%;
    }

    .media__cover {
        display: none;
    }
}
