iframe {
  width: 290px;
  height: 450px;
  border: none;
  margin-top: 100px;
  margin-bottom: 10px;
}
a.button {
  color: #ffffff;
  background-color: var(--button-color);
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.563rem 1.125rem;
  font-size: 100%;
  border-radius: 0.25rem;
  width: 252px;
  margin-bottom: 10px;
  transition: all 0.5s;
}
a.button:first-child {
  margin-top: 50px;
}
a.button:hover, a.button:focus, a.button:active {
  background-color: var(--button-color-hover);
  border: 1px solid var(--button-color);
}

@media screen and (max-width: 820px) and (min-width: 401px) 
{
  iframe {
    width: 200px !important;
    height: 300px !important;
    border: none;
    margin-top: 100px;
  }
}

@media screen and (max-width: 400px) 
{
  iframe {
    width: 200px !important;
    height: 300px !important;
    margin-left: 150px;
    border: none;
    
  }
}