* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgba(30, 30, 30, 1);
    color: white;
    font-family: system-ui;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    text-align: center;
}

.logosSection {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    height: 50px;
    width: 50px;
}

.userLogo {
    border-radius: 100px;
    height: 50px;
    width: 50px;
    position: relative;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.article {
    background-color: rgba(50, 50, 50, 1);
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    width: 60%;
    display: flex;
    flex-direction: row;
}

.article .image {
    height: 150px;
    width: 150px;
    border-radius: 10px;
    margin-right: 20px;
}

.favLogo {
    height: 40px;
    width: 40px;
    cursor: pointer;
}

@media (max-width: 1200px) {    
    .article {
        width: 80%;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .userLogo {
        height: 40px;
        width: 40px;
    }
    .article {
        width: 90%;
    }
}