@import url('https://fonts.googleapis.com/css2?family=Open+Sans&amp;display=swap');

* {
  padding: 0;
  margin: 0 auto;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: rgb(50, 54, 55);
  overflow-x: hidden;
  width: 100vw;
  height: 100vh;
}

main{
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

iframe {
  width: 100%;
  height: 100%;
}

.text{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px;
  text-transform: uppercase;
  color: white;
}

button {
  margin: 20px;
  height: 50px;
  width: 250px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: white;
  text-transform: uppercase;
  background-color: rgb(3, 86, 189);
 }

@media (max-width: 768px){

  body{
    width: 100%;
  }

  .text{
    margin: 30px 0;
  }

  .text h2{
    font-size: 1.3rem;
  }
  
}