@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Montserrat&display=swap');


:root {
  --bg: #ffffff;
  --fg: #2d2d2d;
  --buttonBg: #f1f1f1;
  --hoverBg: #f5f5f5;
}

body {
  background-color: var(--bg);
  margin: 0px;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.inline {
  display: inline-block;
}

.botonera {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 80%;
  max-width: 1024px;
  margin: 1em 0em;
}

.logo {
  margin: 0px 0 50px;
  font-family: 'Dancing Script', cursive;
  font-size:6em;
  color: var(--fg)
}

.redes {
  margin: 50px 0;
  font-family: 'Montserrat', sans-serif;
  font-size:1.3em;
  text-decoration:none;
  color: var(--fg)
}

.boton {
  padding: 0.7em 0.7em 0.6em;
  background-color: var(--buttonBg);
  color: var(--fg)
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3em;
  width: 25%;
  height: 110%;
  margin: 0em 0.5em;
  box-sizing: border-box;
  text-align: center;
  text-decoration:none;
}

.boton:hover {
  background-color: var(--hoverBg);
}

@media only screen and (max-width: 960px) {
  .container {
    height: auto;
  }
  .container > .botonera {
    flex-direction: column;
    width: 60%;
  }
  .botonera > .boton {
    width: auto;
    margin: 0.5em 0em;
  }
  .logo {
    margin: 80px 0 50px;
  }
}
