body {

    margin: 0;
    background-color: rgba(160, 155, 155, 0.087);
}


#banner-container {
    font-family: 'Rubik Dirt';
    content: "";
    width: 100%;
    height: 80vh;
    box-shadow: 0px -2px 20px 2px rgba(0, 0, 0, 0.4);
}

#banner-container a {
    color: white;
}

#banner-image-container {
    width: 100%;
    height: 80vh;
    background-image: url('./bg5.jpg');

    background-position: center;
    z-index: 997;
}

#banner-container::before {
    content: "";
    width: 100%;
    height: 80vh;
    background-color: rgba(52, 51, 51, 0.433);
    position: absolute;

}

.banner-text-container {
    width: 100%;
    height: 80vh;
    position: absolute;
    color: white;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 999;
    text-align: center;
}

.banner-text-container h1 {
    letter-spacing: 4px;
    font-size: 16rem;
    position: relative;
}

.banner-text-container .x {
    position: absolute;
    transform: translateY(-10px);
    animation: bounce 3s infinite;
}

.banner-text-container .tm {
    font-size: 2.5rem;
    position: absolute;
    top: 25px;
    right: -255px;
    font-family: 'roboto';
}

@media (max-width: 780px) {
    .banner-text-container h1 {
        font-size: 3rem;
    }

    .banner-text-container .tm {
        top: -20px;
        right: -100px;
    }

    .hoddie-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hoddie-container h2 {
        font-size: .9rem;
    }

    .image-container  {
        max-width: 250px;
        width: 70%;
    }

    .image-container p {
        text-align: center;
    }
    

    footer h1 {
        font-size: 2rem !important;
    }

    table td, th {
        text-align: center;
        padding: 1px;
        font-size: .5rem;
    }

    .size-section-container,
    .quantity-container{
        width: 100% !important;
    }

    .quantity-container input {
        width: 97%;
    }

    
}

#product-container {
     padding: 20px 0;
     display: flex;
     justify-content: center;
}

.hoddie-container {
    font-family: 'Roboto';
    letter-spacing: 2px;
    display: flex;
    gap: 20px;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-container::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(68, 67, 67, 0.448);
    position: absolute;
    top: 0;
    bottom: 0;
    top: 0;
    left: 0;
    border-radius: 25px;
}

.image-container p {
    color: white;
    font-size: 2rem;
    position: absolute;
    font-weight: 900;
    z-index: 999;
    font-family: 'Rubik Dirt';
}

.buy-button {
      background-color: #558feb; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 25px;
  transition: all .5s;
}

.hoddie-container button:hover {
    border-radius: 0;
    background-color: black;
}

.hoddie-container img {
    border-radius: 25px;
    width: 100%;
}

.image-container {
    max-width: 450px;
}

.size-section-container, 
.quantity-container {
     width: 45%;
}

.size-section-container p {
    background-color: black;
    color: white;
    padding: 5px 5px;
    margin: 0;
    font-size: .8rem;
}

.size-section-container select {
    padding: 0;
    margin: 0;
    width: 100%;
    border: none;
   
}

.quantity-container p {
        background-color: black;
    color: white;
    padding: 5px 5px;
    margin: 0;
      font-size: .8rem;
}


table {
    border-spacing: 2px;
    border: 1px solid white;
}

tr {
    background-color: #d4d4d4;
}

td {
    padding: 5px 10px;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding-bottom: 20px;
}

footer h1 {
       font-family: 'Rubik Dirt';
       letter-spacing: 6px;
       font-size: 4.8rem;
       font-style: italic;
       margin: 0;
}

footer p {
    font-family: 'roboto';
    letter-spacing: 2px;
    margin: 0;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-50px);
        color: grey
    }

    100% {
        transform: translateY(0);
    }
}