@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Bebas+Neue&family=Noto+Sans+Georgian:wght@100..900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Poller+One&display=swap');

body {
    font-family: "PT Sans", sans-serif;
    font-style: normal;
    background-color: #F59F19;
    overflow: hidden;
}

.wrapper {
   position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

#logo {
  width: 100%;
  max-width: 400px;
  height: auto;
}

#churros_3_toppings {
  width: 100%;
  max-width: 350px;
  margin-top: 30px;
}


h1 {
    padding: 0 35px;
    color: bisque;
}

@media screen and (max-width: 768px) {

  #logo {
    max-width: 300px;
  }

  .wrapper {
    height: 100%;
    margin-top: 30px;
  }

  #churros_3_toppings {
    max-width: 280px;
  }

  h1 {
    font-size: 25px;
  }
}