.wrapper {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100%;
    background-image: url("./imgs_and_pdf/Downloads_UI/bg26.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
    background-attachment: fixed;
}

.content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 0;
    height: 100%;
}

.catagoryContainer {
    width: 100%;
    height: 100%;
    margin-top: 30px;
}

.catagoryContainer > h1{
    font-size: 30px;
    color: orange;
}

.catagoryContainer > h1::after{
    content: "";
    display: block;
    border-bottom: 2px solid white;
    margin-top: 10px;
  
}

.modelContainer {
    width: 100%;
    height: 190px;
    display: grid;
    grid-template-columns: 1fr 5fr 1fr;
    gap: 10px;
    justify-items: center;
    align-items: center;
    padding-top: 30px;
}

.modelNumber {
    width: 100%;
    height: 30%;
    margin-left: 30px;
    font-size: clamp(13px, 1.5vw, 35px);
    color: orange;
}

.downloadButton {
    width: 100%;
    height: 30%;
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 700;
}

.download {
    text-decoration: none;
    color: orange;
}

#pic {
    width: 200px;
    height: 180px;
}

#pic img{
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    justify-content: center;
    align-items: center;
}

.rightMover {
    padding-left: 50px;
}

.rightMoverSlight {
    padding-left: 20px;
}

.footer {
    width: 100%;
    background-color: rgb(100, 54, 226, 0.5);
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: clamp(8px, 0.7vw, 15px);
    font-weight: 0;
    position: relative;
    bottom: 0;
    color: yellow;
  }

  @media (width > 1400px) {
    .content {
        padding-left: 400px;
        padding-right: 400px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
  }

  @media (width < 1400px) {
    .content {
        padding-left: 300px;
        padding-right: 300px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
  }

  @media (width < 1100px) {
    .content {
        padding-left: 200px;
        padding-right: 200px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
  }

  @media (width < 880px) {
    .content {
        padding-left: 150px;
        padding-right: 150px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
  }

  @media (width < 768px) {
    .content {
        padding-left: 100px;
        padding-right: 100px;
        padding-top: 50px;
        padding-bottom: 50px;   
    }

    #pic {
        width: 150px;
        height: 150px;
    }
  }

  @media (width < 600px) {
    .content {
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 50px;
        padding-bottom: 50px;       
    }

    #pic {
        width: 120px;
        height: 120px;
    }
  }

  @media (width < 450px) {
    .content {
        padding: 20px;
    }

    #pic {
        width: 100px;
        height: 100px;
    }
  }