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

body, html {
    width: 100%;
    margin: 0 0 0 0;
    font-size: clamp(1em, 1vw, 1.5em);
    padding: 0;
    font-family: Quicksand;
    line-height: 1.6;
}

*, *::before, *::after {
    box-sizing: border-box;
}

h1 {
    font-weight: bold;
}

img {
    max-width: 100%;
}

.index-one {
    min-height: 100vh;
    color: #fff;
    background: url(bg.JPG); 
    position: relative;
    background-position: center center;
    background-size: cover;
}

.container {
    padding: 0 2.5em;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background-blend-mode: overlay;
    opacity: 0%;
    animation: fade-in 1s ease-in forwards 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .row {
    display: flex;
    justify-content: center;
    gap: 2em;
  }

  @keyframes fade-in {
    0%{
        opacity: 0%;
        transform: translateY(1em)
    } 
    100% {
        opacity: 100%;
        transform: translateY(0);
    }
  }

  @media (min-width: 800px) {
    .index-one {
        background-position: center 28%;
    }
  }

  button {
    padding: 10px 20px;
    border-radius: 40px;
    border: none;
    background-color: #3b6778;
    color: white;
  }