@media screen and (max-width: 351px) {
  .hero {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5)
      ),
      color(srgb rgb(255, 255, 255) rgb(255, 255, 255) rgb(255, 255, 255));
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    transition: all 0.3s ease;
    object-fit: cover;
  }

  .hero h1 {
    font-size: 2rem;
    color: rgb(245, 196, 38);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-in-out;
  }

  .hero p a {
    font-size: 1rem;
    color: rgb(0, 0, 0);
    animation: fadeInUp 1s ease-in-out 0.5s;
    text-decoration: none;
  }

  .hero p a:hover {
    color: rgb(245, 196, 38);
  }

  /* Animations */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .hero {
      padding: 80px 15px;
    }

    .hero h1 {
      font-size: 2rem;
    }

    .hero p {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .hero {
      padding: 60px 10px;
    }

    .hero h1 {
      font-size: 1.5rem;
    }

    .hero p {
      font-size: 0.9rem;
    }
  }

  .main-detail-content {
    display: flex;
    width: 100%;
    height: inherit;
    border-radius: 10px;
    box-shadow: 1vh 1vh 5vh black;
    margin-bottom: 10px;
    margin-left: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #photo {
    display: flex;
    width: 90%;
    height: 300px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: none;
  }

  #photo img {
    height: 200px;
    width: 90%;
    border-radius: 10px;
  }

  #right-details {
    display: flex;
    width: 100%;
    height: inherit;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .tv-size {
    display: flex;
    width: 50%;
    justify-content: space-between;
  }

  .tv-size a {
    border: 1px solid gray;
    text-decoration: none;
    color: gray;
  }

  .tv-size a:hover {
    color: black;
    border-color: black;
  }
}
@media (min-width: 352px) and (max-width: 600px) {
  .hero {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5)
      ),
      color(srgb rgb(255, 255, 255) rgb(255, 255, 255) rgb(255, 255, 255));
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    transition: all 0.3s ease;
    object-fit: cover;
  }

  .hero h1 {
    font-size: 2rem;
    color: rgb(245, 196, 38);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-in-out;
  }

  .hero p a {
    font-size: 1rem;
    color: rgb(0, 0, 0);
    animation: fadeInUp 1s ease-in-out 0.5s;
    text-decoration: none;
  }

  .hero p a:hover {
    color: rgb(245, 196, 38);
  }

  /* Animations */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .hero {
      padding: 80px 15px;
    }

    .hero h1 {
      font-size: 2rem;
    }

    .hero p {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .hero {
      padding: 60px 10px;
    }

    .hero h1 {
      font-size: 1.5rem;
    }

    .hero p {
      font-size: 0.9rem;
    }
  }

  .main-detail-content {
    display: flex;
    width: 99%;
    height: inherit;
    border-radius: 10px;
    box-shadow: 1vh 0vh 1vh black;
    margin-bottom: 10px;
    margin-left: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #photo {
    display: flex;
    width: 90%;
    height: 300px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: none;
    
  }

  #photo img {
    height: 250px;
    width: 80%;
    border-radius: 10px;
    color: currentColor;
  }

  #right-details {
    display: flex;
    width: 100%;
    height: inherit;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  
  .tv-size {
    display: flex;
    width: 50%;
    justify-content: space-between;
  }

  .tv-size a {
    border: 1px solid gray;
    text-decoration: none;
    color: gray;
  }

  .tv-size a:hover {
    color: black;
    border-color: black;
  }
}
@media (min-width: 600px) and (max-width: 820px) {
  .hero {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5)
      ),
      color(srgb rgb(255, 255, 255) rgb(255, 255, 255) rgb(255, 255, 255));
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    transition: all 0.3s ease;
    object-fit: cover;
  }

  .hero h1 {
    font-size: 2rem;
    color: rgb(245, 196, 38);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-in-out;
  }

  .hero p a {
    font-size: 1rem;
    color: rgb(0, 0, 0);
    animation: fadeInUp 1s ease-in-out 0.5s;
    text-decoration: none;
  }

  .hero p a:hover {
    color: rgb(245, 196, 38);
  }

  /* Animations */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .hero {
      padding: 80px 15px;
    }

    .hero h1 {
      font-size: 2rem;
    }

    .hero p {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .hero {
      padding: 60px 10px;
    }

    .hero h1 {
      font-size: 1.5rem;
    }

    .hero p {
      font-size: 0.9rem;
    }
  }

  .main-detail-content {
    display: flex;
    width: 99%;
    height: inherit;
    border-radius: 10px;
    box-shadow: 1vh 0vh 1vh black;
    margin-bottom: 10px;
    margin-left: 0;
    align-items: center;
    justify-content: center;
  }

  #photo {
    display: flex;
    width: 90%;
    height: 300px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: none;
  }

  #photo img {
    height: 250px;
    width: 90%;
    border-radius: 10px;
    color: currentColor;
  }
  .right-content {
    width: 80%;
  }
  #right-details {
    display: flex;
    width: 100%;
    height: inherit;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: left;
  }

  .tv-size {
    display: flex;
    width: 50%;
    justify-content: space-between;
  }

  .tv-size a {
    border: 1px solid gray;
    text-decoration: none;
    color: gray;
  }

  .tv-size a:hover {
    color: black;
    border-color: black;
  }
}
@media (min-width: 820px) and (max-width: 1024px) {
  .hero {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5)
      ),
      color(srgb rgb(255, 255, 255) rgb(255, 255, 255) rgb(255, 255, 255));
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    transition: all 0.3s ease;
    object-fit: cover;
  }

  .hero h1 {
    font-size: 2rem;
    color: rgb(245, 196, 38);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-in-out;
  }

  .hero p a {
    font-size: 1rem;
    color: rgb(0, 0, 0);
    animation: fadeInUp 1s ease-in-out 0.5s;
    text-decoration: none;
  }

  .hero p a:hover {
    color: rgb(245, 196, 38);
  }

  /* Animations */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .hero {
      padding: 80px 15px;
    }

    .hero h1 {
      font-size: 2rem;
    }

    .hero p {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .hero {
      padding: 60px 10px;
    }

    .hero h1 {
      font-size: 1.5rem;
    }

    .hero p {
      font-size: 0.9rem;
    }
  }

  .main-detail-content {
    display: flex;
    width: 99%;
    height: inherit;
    border-radius: 10px;
    box-shadow: 1vh 0vh 1vh black;
    margin-bottom: 10px;
    margin-left: 0;

    align-items: center;
    justify-content: center;
  }

  #photo {
    display: flex;
    width: 90%;
    height: 300px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: none;
  }

  #photo img {
    height: 250px;
    width: 90%;
    border-radius: 10px;
    color: currentColor;
  }

  #right-details {
    display: flex;
    width: 100%;
    height: inherit;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: left;
  }
  .right-content {
    width: 400px;
  }
  .tv-size {
    display: flex;
    width: 50%;
    justify-content: space-between;
  }

  .tv-size a {
    border: 1px solid gray;
    text-decoration: none;
    color: gray;
  }

  .tv-size a:hover {
    color: black;
    border-color: black;
  }
}
@media (min-width: 1024px) and (max-width: 2010px) {
  .hero {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5)
      ),
      color(srgb rgb(255, 255, 255) rgb(255, 255, 255) rgb(255, 255, 255));
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    transition: all 0.3s ease;
    object-fit: cover;
  }

  .hero h1 {
    font-size: 2rem;
    color: rgb(245, 196, 38);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-in-out;
  }

  .hero p a {
    font-size: 1rem;
    color: rgb(0, 0, 0);
    animation: fadeInUp 1s ease-in-out 0.5s;
    text-decoration: none;
  }

  .hero p a:hover {
    color: rgb(245, 196, 38);
  }

  /* Animations */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .hero {
      padding: 80px 15px;
    }

    .hero h1 {
      font-size: 2rem;
    }

    .hero p {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .hero {
      padding: 60px 10px;
    }

    .hero h1 {
      font-size: 1.5rem;
    }

    .hero p {
      font-size: 0.9rem;
    }
  }

  .main-detail-content {
    display: flex;
    width: 99%;
    height: max-content;
    border-radius: 10px;
    box-shadow: 1vh 0vh 1vh black;
    margin-bottom: 10px;
    margin-left: 0;
    align-items: center;
    justify-content: center;
  }

  #photo {
    display: flex;
    width: 90%;
    height: inherit;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: none;
  }

  #photo img {
    height: 370px;
    width: 500px;
    position: relative;
    border-radius: 10px;
    color: currentColor;
  }

  #right-details {
    display: flex;
    width: 100%;
    height: inherit;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: left;
  }
  .right-content {
    width: 400px;
  }
  .tv-size {
    display: flex;
    width: 50%;
    justify-content: space-between;
  }

  .tv-size a {
    border: 1px solid gray;
    text-decoration: none;
    color: gray;
  }

  .tv-size a:hover {
    color: black;
    border-color: black;
  }
}
