article {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
}

header {
    width: 70%;
    display: flex;
    justify-content: flex-end;
    height: 15vh;
}

.menu {
    padding: 15px 0;
}

.menu__menu-item {
    margin: 10px;
    font-size: 18px;
    color: #fff;
}

.menu__menu-item:hover {
    color: #f00;
}

.text-container {
    margin-left: 10%;
    max-width: 80%;
    color: #fff;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 40px;
}

a {
    color: #f00;
}

.interesting-facts-container {
    max-width: 80%;
    margin-left: 10%;
}

h1 {
    margin-left: 10%;
    color: #fff;
}

.interesting-facts-container {
    margin: 10px 0 50px 10%;
    max-width: 80%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.interesting-facts-container__fact {
    display: flex;
    align-items: center;
    width: 50%;
    background: #0a0a0a;
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    header {
        height: 10vh;
    }

    .text-container {
        top: 10%;
        left: 10%;
        max-width: 80%;
        font-size: 16px;
    }

    .interesting-facts-container {
        flex-direction: column;
        align-items: center;
    }

    .interesting-facts-container__fact {
        width: 80%;
        margin: 10px 0;
    }
}