body,h1,h2,h3,h4,h5,h6 {
  font-family: montserrat;
}

body{
  left: 0;
  right: 0;
}

button{ 
  width: 100px;
  height:80px;
  transition: width 1s
}

button:hover {
  width: 150px;
}

a:link {
  text-decoration: none;
}

a.ylink:link {
  color: black;
  text-decoration: none;
  background-color: yellow;
}

a:visited {
  text-decoration: none;
}

a.ylink:visited {
  color: black;
  text-decoration: none;
  background-color: yellow;
}

a:hover {
  text-decoration: none;
}

a.ylink:hover {
  text-decoration: none;
  background-color: white;
}

a:active {
  text-decoration: none;
}


.iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

html {
   scrollbar-color: #e91e63 black;
}
