header > div > h1 {
    font-size: 3em !important;
}

main {
    min-width: 100%;
}

main > .third-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2em 5em;
    width: 100%;
}

main > .third-container > a {
    width: 45%;
    height: 28em;
    cursor: pointer;
    color: black;
    text-decoration: none;
    overflow: hidden;
}

main > .third-container > a.aura-apex {
    background-image: url("../images/huawei-matebook-16s-wallpaper.png"), linear-gradient(#eeeeeeFF 0, #eeeeeeFF 100%);
    justify-content: center;
}

main > .third-container > a.aura-lite {
    background-image: url("../images/huawei-matebook-14s-key-vision-kv.png"), linear-gradient(#eeeeeeFF 0, #eeeeeeFF 100%);
    justify-content: end;
}

main > .third-container > a {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;

    align-items: center;
    box-shadow: 0 0 1em 0.1em #00000011;
    border-radius: 0.5em;
}

main > .third-container > a.aura-apex > div {
    padding-left: 10%;
}

main > .third-container > a.aura-lite > div {
    padding-right: 15%;
}

main > .third-container > a.about {
    background-color: #081327;
}

main > .second-container {
    margin: 5em 0;
}

main > .second-container > h1 {
    width: 100%;
    text-align: center;
    margin-top: 5em;
    margin-bottom: 2em;
}

main > .second-container > .computers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    padding: 2em 0;
    width: 100%;
}

main > .second-container > .computers > div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

main > .second-container > .computers > div > img {
    width: 60%;
    height: 100%;

}

main > .second-container > .computers > div > .title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 2em 0;
}

main > .second-container > .computers > div > .title > h3 {
    font-size: 1em;

}

main > .second-container > .computers > div > .specs {
    margin: 3em 0;
}

main > .second-container > .computers > div > .specs > div > h1,
main > .second-container > .computers > div > .specs > div > h3 {
    font-size: 0.8em;
    margin: 0.5em 0;
    text-align: center;
}

main > .second-container > .computers > div > .specs > div > h1 {
    font-size: 1.2em;
    font-weight: bold;

}

main > .third-container > .about {
    display: flex;
    justify-content: space-between;
    align-items: normal;
    flex-direction: column;
}

main > .third-container > .about > h1:first-child {
    color: #162840;
    font-size: 5em;
    text-align: end;
}

main > .third-container > .about > h1:last-child {
    color: white;
    font-size: 2em;
    width: 50%;
}

@media screen and (max-width: 768px) {
    main > .second-container > .computers {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
    }

    main > .third-container {
        flex-direction: column;
    }

    main > .third-container > a {
        margin: 1em auto;
        width: 90%;
    }

}

@media screen and (max-width: 500px) {
    main > .third-container > a {
        width: 98%;
    }
}