* {
  font-family: Arial, Helvetica, sans-serif;
}

body {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

img {
  max-width: 500px;
  border: 1px solid black;
}

h1 {
  text-align: center;
  font-size: 45px;
  margin: 10px;
}
.top-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 20px;
}
#main {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  max-width: 800px;
}
.main-container {
  max-width: 600px;
}

#drink-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 500px;
}

#drink-text {
  padding: 10px 10px;
}
.search-bar {
  width: 100%;
  display: flex;
  justify-content: space-around;
  height: 100px;
  align-items: center;
  flex-direction: row;
  font-family: Arial, Helvetica, sans-serif;
}

input {
  height: 30px;
  width: 200px;
  font-size: 18px;
  margin-right: 15px;
  border-radius: 5px;
}

#no-search {
  display: flex;
  justify-content: center;
}

.home-container {
  height: 100vh;
  width: 100vw;
  background-color: blue;
  display: flex;
  justify-content: center;
  align-items: center;
}

#navbar {
  display: flex;
  justify-content: space-around;
  max-width: 500px;
}

@media (max-width: 600px) {
  * {
    font-size: 50px;
  }
  .main-container {
    max-width: 100%;
  }
}
