*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Geist", "Geist-Fallback", sans-serif;
    background-color: #0E0E10;
}

.main-section{
    display: flex;
    justify-content: center;
    /* flex-direction: column; */
    width: 100%;
    height: 800px;
}

.sizing{
    margin-top: 150px;
    height: 600px;
    width: 50%;
    background-color: none;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

.for-sale{
    height: 300px;
    width: 800px;
    background-color: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 100px;
}

.seller-info{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    margin-left: 100px;
}

a{
    text-decoration: none;
    color: #848485;
    font-weight: bold;
}

.list{
    list-style: none;
    color: #B9B7BA;
    font-weight: 600;
}

.main-text{
    font-weight: 600;
}

.info-text{
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 700;
}

.card{
    padding-left: 100px;
    margin-top: 20px;
    background-color: none;
    height: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    border: 2px solid #1A1A1C;
    border-radius: 8px;
    color: #B9B7BA;
}

.heading{
    color: #6C6C6E;
}

/* ==========================
   Tablet (1024px and below)
   ========================== */
@media (max-width: 1024px) {
    .main-section {
        height: auto;
        padding: 40px 20px;
    }

    .sizing {
        width: 90%;
        height: auto;
        margin-top: 80px;
    }

    .for-sale {
        width: 100%;
        height: auto;
        padding-left: 40px;
        padding-right: 40px;
    }

    .seller-info {
        margin-left: 40px;
    }

    .card {
        padding-left: 40px;
        height: auto;
        padding-right: 20px;
    }

    .info-text {
        font-size: 22px;
    }
}

/* ==========================
   Mobile (768px and below)
   ========================== */
@media (max-width: 768px) {
    .main-section {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 30px 15px;
    }

    .sizing {
        width: 100%;
        margin-top: 50px;
        height: auto;
    }

    .for-sale {
        width: 100%;
        padding: 20px;
        height: auto;
    }

    .seller-info {
        margin: 30px 20px 0;
    }

    .card {
        width: 100%;
        height: auto;
        padding: 20px;
        margin-top: 20px;
    }

    .info-text {
        font-size: 20px;
    }
}

/* ==========================
   Small Mobile (480px and below)
   ========================== */
@media (max-width: 480px) {
    .main-section {
        padding: 20px 10px;
    }

    .sizing {
        width: 100%;
        margin-top: 30px;
    }

    .for-sale {
        padding: 15px;
    }

    .seller-info {
        margin: 20px 15px 0;
    }

    .card {
        padding: 15px;
    }

    .info-text {
        font-size: 18px;
    }

    .main-text {
        font-size: 14px;
    }

    .list,
    a {
        font-size: 14px;
    }
}