:root {
  --bg: #EEE;
  --card: #FFF;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Roboto Slab', serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: var(--bg);
  color: black;
}

.card {
  width: 600px;
  min-height: 79%;
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
}

h1 {
  margin: 25px;
  font-size: 126px;
  font-weight: 300;
}

h1 small {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}

h2 {
  font-size: 36px;
  margin: 0;
  font-weight: 400;
}

ul.offers {
  margin: 16px;
  padding: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.offers li {
  padding: 12px 16px;
  font-weight: 300;
}

.offers li span, .offers li a {
  padding-left: 4px;
  font-weight: 400; 
  color: black;
}
