@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@200;300;400;500;700;900&family=Poppins:wght@100;200;300;400;500;600;700&display=swap");

html {
    font-size: 80%;
    /* Prevent white flash on page load */
    background: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: white;
}

.background {
    background: linear-gradient(rgba(134, 134, 134, 0.384), rgba(0, 0, 0, 0.459)),
    url("https://dltb83xt8xjo5.cloudfront.net/images/tbtm-sale-background.webp");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.section {
    display: flex;
    flex-direction: column;
}

.center-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.part {
    width: 55%;
    padding: 25px 40px;
    align-self: center;
    line-height: 1.8;
    font-size: 1.8rem;
}

a {
    color: orange;
}

.heading {
    font-size: 1.6rem;
    color: orange;
    display: inline-block;
    font-weight: normal;
    margin-bottom: 2rem;
    border-bottom: 2px orange solid;
}

.description {
    color: #e6e6e6;
    font-size: 1.8rem;
    padding-top: 1.2rem;
}

@media (min-width: 2000px) {
    .heading {
        font-size: 3rem;
    }

    .description {
        font-size: 2rem;
        padding-top: 1.2rem;
    }
    
    .part ul li {
        font-size: 2rem;
    }
}

@media (max-width: 700px) {
    .part {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .heading {
        font-size: 2rem;
    }

    .description {
        font-size: 1.8rem;
        padding-top: 1.2rem;
    }
}

@media (max-width: 379px) {
    .part {
        padding: 25px 30px;
    }

    .heading {
        font-size: 1.8rem;
    }

    .description {
        font-size: 1.8rem;
        padding-top: 1.2rem;
    }
}

.font-italic {
    font-style: italic;
}

.font-weight-bold {
    font-weight: bold;
}

.text-orange {
    color: orange;
}

.part ul {
    list-style-type: disc;
    margin: 1rem 0;
    padding-left: 2.5rem;
}

.part ul li {
    font-size: 1.8rem;
    color: #e6e6e6;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.part ul li strong {
    color: #ffa500;
    font-weight: 600;
}

.part ul li b {
    color: #ffa500;
    font-weight: 600;
}
