@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif
}

body {
  min-height: 100vh;
  color: white;

  background-image: 
    url('orn-izq.svg'), 
    url('orn-der.svg'), 
    linear-gradient(to top left, #18527F, #000000);
  background-position: 
    left top, 
    right top, 
    center;
    
  background-repeat: 
    no-repeat, 
    no-repeat, 
    no-repeat;
    
  background-size: 
    100px auto,
    100px auto,
    cover;
}

.logo {
  position: absolute;
  top: 32px;
  left: 10%
}

.section-container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 32px
}

.section-container h1 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 20px;
}

.section-container p {
  font-size: 16x;
  font-weight: 300;
  margin-bottom: 20px;
}

.section-container a {
  font-size: 16px;
  font-weight: bold;
  color: white;
  background: linear-gradient(to bottom, #4CC6FC, #1479FB);
  padding: 18px 32px;
  border-radius: 12px;
  text-decoration: none
}



@media (min-width: 768px) {
  body {
  min-height: 100vh;
  color: white;

  background-image: 
    url('orn-izq.svg'), 
    url('orn-der.svg'), 
    linear-gradient(to right, #18527F, #000000);
  background-position: 
    left center, 
    right center, 
    center;
    
  background-repeat: 
    no-repeat, 
    no-repeat, 
    no-repeat;
    
  background-size: 
    200px auto,
    200px auto,
    cover;
}
  .section-container h1 {
    font-size: 62px;
    margin-bottom: 24px;
  }
  
  .section-container p {
    max-width: 780px;
    font-size: 20px; 
    margin-bottom: 32px;
    line-height: 25px;
  }
}