@import url('./header.css');
@import url('./scrollbar.css');
@import url('./progress_bar.css');
@import url('./footer.css');
body{
    background-color: #000;
}
main{
    margin-top: 80px;
}
.hero-section-info-line{
    background-color: #D11C1C;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 22px;
}
.main-hero-section{
    width: 100%;
    height: 450px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.main-hero-section h1{
    text-transform: uppercase;
    font-size: 80px;
    color: #FFF;
}
.main-hero-section h1::before{
    content: "<";
    color: #D11C1C;
}
.main-hero-section h1::after{
    content: "/>";
    color: #D11C1C;
}
.main-hero-section ul{
    color: #FFF;
    list-style: none;
}
.main-hero-section ul li{
    padding: 5px 0;
}
.main-hero-section ul li::before{
    content: "// ";
    color: #D11C1C;
}
.main-page-content-wrapper{
    width: 100%;
    background-color: #000;
    height: auto;
}
.main-page-content{
    width: 90%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    padding: 10px;
}
.main-page-content-container{
    background-color: #000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.main-page-content-container h2{
    color: #FFF;
    font-size: 36px;
}
.main-page-content-container h2::before{
    content: "// ";
    color: #D11C1C;
}
.main-page-content-container h3{
    color: #EFEFEF;
    font-size: 26px;
}
.main-page-content-container ul{
    color: #FFF;
    padding: 10px;
    list-style: none;
}
.main-page-content-container img{
    height: 18px;
    padding-left: 10px;
    width: min-content;
}
.main-page-content-container .laptop-img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

@media screen and (max-width:1050px) {
    .hero-section-info-line{
        font-size: 20px;
    }
}
@media screen and (max-width:870px) {
    .main-hero-section h1{
        font-size: 42px;
    }
    .main-page-content-container h2{
        font-size: 24px;
    }
    .main-page-content-container h3{
        font-size: 20px;
    }
    .main-hero-section{
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 50px 0;
    }
    .main-page-content{
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 50px 0;
        max-width: 600px;
        text-align: center;
    }
    .main-page-content-container{
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .main-page-content-container img{
        padding-left: 0;
    }
    .main-page-content-container .laptop-img{
        max-width: 350px;
        width: 90%;
    }
}
@media screen and (max-width:680px){
    .hero-section-info-line{
        font-size: 18px;
    }
}