* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  background-color: rgb(19, 19, 19);
  font-family: 'Times New Roman', Times, serif;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100vh;
  font-size: min(135vh, 1800px);
}

.v {
  grid-row: 1 / -1;
  color: #fc0000;
  font-size: 1em;
  font-family: 'Times New Roman', Times, serif;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  user-select: none;
}

.ye {
  font-size: min(12vh, 200px);
  color: #fc0000;
  font-family: 'Times New Roman', Times, serif;
  display: flex;
  align-items: flex-end;
  padding: 0;
  margin-left: -1.35em;
  user-select: none;
}

#flavor{
    margin-right: 5em;
    font-size: x-large;
    font-style: italic;
    color: #101010;
}

.flavor {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
  padding: 20px;
}

.buttons {
  display: flex;
  gap: 12px;
  padding: 0 20px 20px 20px;
  align-items: flex-end;
  justify-content: flex-end;
}

.btn {
  font-family: 'Times New Roman', Times, serif;
  font-size: 14px;
  color: #fc0000;
  text-decoration: none;
  border: 1px solid #fc0000;
  padding: 6px 16px;
  transition: 0.2s;
}

.btn:hover {
  background-color: #fc0000;
  color: rgb(19, 19, 19);
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto;
    font-size: min(100vmin, 1800px);
  }

  .v {
    grid-row: 1;
    justify-content: center;
    margin-right: 10%;
  }

  .flavor {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .buttons {
    padding: 0 20px 20px 20px;
    align-items: center;
    justify-content: center;
  }

  .ye {
    font-size: min(12vmin, 200px);
  }
}
