@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600&display=swap");

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  transition: all 0.2s linear;
}

body {
  font-family: "Roboto", sans-serif;
}

/*Inicio Main*/

.main {
  margin-top: -5px;
  width: 100%;
  background-color: #000;
  height: calc(103vh - 80px);
  background-image: url("assets/img/background.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-left: 10%;
}

.main h1 {
  color: #ffffff;
  font-size: 54px;
}

.main p {
  font-size: 24px;
  font-style: italic;
  color: #1e96fc;
  margin-top: 10px;
  margin-bottom: 35px;
}

.call-to-action {
  cursor: pointer;
  background-color: #ffffff;
  border: 0;
  padding: 14px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
}

.call-to-action:hover {
  background: #1e96fc;
  color: #fff;
  padding: 20px;
  border-radius: 3px;
  transition: 1s;
}

iframe {
  overflow: hidden;
}
