#first-container-background{
    background-color:rgb(119,185,79);
    border-radius: 5px;
}

body{
    background-color:rgb(245,246,246);
}
#A-and-B-Color{
    color: white;
}
#card-second{
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 30px;
    margin-bottom: 50px;
}
.text-gold{
    color:rgb(255, 215, 0);
}
video{
     width: 600px;
     height: 400px;
}
/* Default styles for screens smaller than 768px go here (mobile first) */
@media only screen and (max-width: 600px) {
  video{
    width: 100%;
    height: 200px;
  }
  #image{
    width: 100%;
    height: 200px;
  }
}
@media (min-width: 576px) {
  /* Styles for screens 576px and wider */
 video{
     width: 500px;
     height: 350px;
}
#image{
    width: 500px;
    height: 350px;
}
}
@media (min-width: 768px) {
  /* Styles for screens 768px and wider */
 video{
     width: 600px;
     height: 400px;
}
#image{
     width: 600px;
     height: 400px; 
}
}
