*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    width: 100vw;
    height: 100vh;
    background:linear-gradient(to right,#fdfbfb,#ededee);
    /* overflow-x: hidden; */
}
.div1{
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-style: italic;
    font-weight: 700;
    font-variant: small-caps;
}
.div1 h1{
    margin-top: 10px;
    color:#2f855a;
}
.div1 p{
    margin-top: 10px;
    color: #b08968;
    font-size: 22px;
}
.main-container{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-weight: 700;
    font-variant: small-caps;
}
.child{
    display: flex;
    column-gap: 25px;
    margin-top: 27px;
}
.child img{
    width: 100px;
    height: 100px;
    border-radius: 20px;
    transition: all 0.3s linear;
}
.container h2{
    color: rgba(90, 86, 150, 0.932);
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    border-bottom: 2px solid black;
    border-right: 2px solid black;
    width: 600px;
    height: 200px;
    box-shadow: 5px 5px 5px 0px gray;
    background-color: white;
}
.child img:hover{
    transform: scale(2);
}

.child video{
    width: 250px;
    transition: all 0.3s linear;
}

.child video:hover{
    transform: scale(2);
}

#v1{
    height: 130px;
}
#p{
    color: #2c3e50;
}

@media (max-width: 768px) {
  .div1 {
    width: 100vw;
    padding: 10px;
    font-size: 18px;
  }
  .div1 h1 {
    font-size: 24px;
  }
  .div1 p {
    font-size: 16px;
  }
  .main-container {
    width: 100vw;
    margin-top: 15px;
  }
  .container {
    width: 95vw;
    min-width: unset;
    height: auto;
    padding: 10px 0;
    box-sizing: border-box;
  }
  .child {
    flex-direction: column;
    row-gap: 15px;
    column-gap: 0;
    align-items: center;
  }
  .child img {
    width: 80vw;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
  }
  .child video {
    width: 90vw;
    max-width: 350px;
    height: auto;
  }
  #v1 {
    height: auto;
    max-height: 200px;
  }
}