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

header {
    background-image: url("../images/Header.png");
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
}

.container-content {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    height: 300px;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
    word-spacing: 2px;
}

main header h1 {
    font-family: 'Luckiest Guy';
    color: white;
    font-weight: 400;
    font-size: 3rem;
    
}

main header p {
    color: white;
    font-size: 1rem;
    text-align: center;
}

.btn-header {
    height: auto;
    padding: 12px 20px;
    border-radius: 28px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.btn-download-windows {
    background-color: #fff;
}

.btn-discord-navegator {
    background-color: #23272A;
    color: #fff;
}

section {
    display: flex;
}  

.section-container {
    display: flex;
    max-width: 900px;
    margin: 30px auto;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

section img {
    width: 100%;
    object-fit: cover;
}

section h1 {
    font-size: 200%;
    text-align: left;
    font-weight: 800;
}

section p {
    font-size: 1.2rem;
    text-align: left;
}

.section-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: justify
    
}

.section-container-column {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 40px auto 30px;
    height: 100%;
    align-items: center;
    gap: 0;
}

footer {
    background-color: #23272A;
    display: flex;
}

.footer-img{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
}

footer img {
    width: 180px;
}

section:nth-of-type(even){
    background-color: #F6F6F6;
}

@media (max-width: 510px){
    .btn-header {
        width: 100%;
    }
    .btn-download-windows{
        margin-bottom: 10px;
    }
    main header p {
        text-align: justify;
    }
}

@media (max-width: 1000px){
    .section-container{
        flex-direction: column;
        margin: 30px 30px;
    }
    .section-text {
        text-align: justify;
    }
    .section-column-reverse {
        flex-direction: column-reverse;
    }
    section p {
        font-size: 1rem;
    }
    footer img {
        width: 150px;
    }
}

@media (max-width: 600px) {
    section h1{
        font-size: 150%;
    }
    footer img {
        width: 120px;
    }
}