* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: hsl(36, 100%, 99%);
}

/* HEADER */
.nav-link {
    color: hsl(236, 13%, 42%);
}

.nav-link:hover {
    color: hsl(5, 85%, 63%);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    background-color: hsl(36, 100%, 99%);
    box-shadow: none;
}

/* MAIN CONTAINER */
/* Left side of the Grid */
h1 {
    font-weight: 800;
}

p {
    font-size: 0.8rem;
    color: hsl(236, 13%, 42%);
}

button {
    border: none;
    background-color: hsl(5, 85%, 63%);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
}

button:hover {
    background-color: hsl(240, 100%, 5%);
}

/* Right side of the Grid */
.right-container {
    /* border: 1px solid orange; */
    background-color: hsl(240, 100%, 5%);
    padding: 22px;
}

.right-container > h2 {
    font-weight: 700;
    color: hsl(35, 77%, 62%);
}

.right-container > a {
    text-decoration: none;
}

.right-container > a > h6 {
    color: white;
    font-weight: 700;
}

.right-container > a > h6:hover {
    color: hsl(35, 77%, 62%);
}

.right-container > p {
    color: hsl(233, 8%, 79%);
    border-bottom: 1px solid hsl(236, 13%, 42%);
}

/* BOTTOM CONTAINER */
.other-news {
    margin-top: 80px;
}

.topic-images {
    width: 90px;
    height: 120px;
}

.content {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.content > h3 {
    color: hsl(233, 8%, 79%);
    font-weight: 700;
}   

.content > h6 {
    font-weight: 800;
}  

.content > h6:hover {
    color: hsl(5, 85%, 63%);
    cursor: pointer;
}  

.content > p {
    color: hsl(236, 13%, 42%);
}

/* FOOTER */
.attribution { 
    font-size: 11px; 
    text-align: center; 
}

.attribution a { 
    color: hsl(228, 45%, 44%); 
}

/* MEDIA QUERIES */
/* 
    320px — 480px: dispositivos móveis. 
    481px — 768px: iPads, tablets. 
    769px — 1024px: telas pequenas, laptops. 
    1025px — 1200px: desktops, telas grandes 
*/

/* iPads, tablets */
@media (max-width: 768px) {
    .right-container {
        margin-top: 60px;
    }

    .other-news > div {
        margin-bottom: 30px;
    }
}
