body {
    width: 100vw;
    background-color: black;
    font-family: Arial, Helvetica, sans-serif;
    
    display: flex;
    flex-direction: column;
    height: max-content;
    align-items: center;
    justify-content: center;
}

#title {
    position: absolute;
    top: 2vh;
    width: 100vw;
    font-size: x-large;
    text-align: center;
    color:white;
    font-family : monospace;
}

#youtube-clip {
    width: 200vw; 
    height: 80vh;
    z-index: -2;
}
#transition {
    background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
    margin-top: -250px;/*position: relative: and bottom: 250px;*/

    height: 500px;
    width: 100vw;
    z-index: -1;
}

@keyframes jump {
    from {
        top: 90vh
        /*top: -200px;
        margin-top: -30px;
        margin-bottom: 20px;*/
    }
    to {
        top: 95vh
        /*top: -150px;
        margin-top: -10px;
        margin-bottom: 0px;*/
    }
  }

.arrow {
    border: solid white;
    border-width: 0 7px 7px 0;
    display: inline-block;
    padding: 3px;
    width: 50px;
    position: absolute;
    /*margin-top: -30px;*/
    height: 50px;
    animation-name: jump;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.labels {
    font-size: large;
    background-color: white;
    box-shadow:0 5px 20px rgb(255 255 255);
    width: 80vw;
    border-radius: 20px;
    padding: 20px;
    font-weight: 500;
    text-align: center;
}

.product {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    margin: 50px;
    box-shadow:0 5px 20px rgb(255 255 255);
    width: 80vw;
}
.product-image {
    height: 300px;
    border-radius: 20px;
}
.product-name {
    font-size: xx-large;
}
.product-description  {
    font-size: medium;
}
.product-description, .product-name {
    margin: 5px;
}
.product-button{
    margin: 10px;
    font-size: 20px;
}
.product-info{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 500px) {
    .product {
        flex-direction: column;
    }
    .product-image {
        height: auto;
        width: 70vw;
    }
    .product-info{
        align-items: center;
    }
}

@media (max-width: 500px) {
    #youtube-clip {
        height: 113vw;
    }
    #transition {
       top: 113vw;
    }

}

#contact{
    background-color: white;
    width: 80vw;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow:0 5px 20px rgb(255 255 255);
    margin: 50px;

}
#contact p{
    font-size: medium;
}