section {
  display: grid;
  grid-template-columns: 1fr;
}

body {
  color: #ffffff;
  background-color: #393939;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 16px;
  margin: 8px;
}

h1, h2, p {
  color: #ffffff;
  font-family: sans-serif;
}

h1, h2 {
  font-size: 30px;
}

p {
  font-size: 30px;
}

a {
  color: #1E88E5;
  font-family: sans-serif;
  text-decoration: none;
  font-size: 15px;
}

a:hover {
  color: #42A5F5;
  text-decoration: underline;
}

ul {
  list-style: none;
  padding-top: 10px;
  padding-bottom: 20px;
}

ul li {
  padding-left: 20px;
  padding-bottom: 10px;
}

input[type=text] {
  width: 100%;
  font-size: 28px;
  padding: 8px 20px;
  margin: 4px 0;
  box-sizing: border-box;
  border: 2px solid white;
  border-radius: 4px;
}

.biglist li a {
  font-size: 50px;
}

.alizarin-flat-button {
  position: relative;
  vertical-align: top;
  top: 2px;
  height: 56px;
  padding: 2px 20px 0 20px;
  font-size: 22px;
  color: white;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  background: #e74c3c;
  border: 0;
  border-radius: 8px;
  border-bottom: 2px solid #db4334;
  cursor: pointer;
  -webkit-box-shadow: inset 0 -2px #db4334;
  box-shadow: inset 0 -2px #db4334;
}
.alizarin-flat-button:active {
  top: 4px;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.icon {
  color: #ffffff;
  vertical-align: middle;
}

.box {
  padding: 10px;
  margin: 2px;
  border: 1px solid white;
}

.leftalign {
  margin-left: 30px;
}

/* Desktops, 1281px to hires desktops */
@media (min-width: 1281px) {
  body {
    margin: 50px;
  }
  section {
    grid-template-columns: 1fr 1fr;
  }
}

/* Laptops, desktops, 1025x1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
  body {
    margin: 50px;
  }
  section {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablets, iPads (portrait), 768x1024px */
@media (min-width: 768px) and (max-width: 1024px) {
  body {
    margin: 20px;
  }
  section {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablets, iPads (landscape), 768x1024px */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  body {
    margin: 20px;
  }
  section {
    grid-template-columns: 1fr 1fr;
  }
}

/* Lowres tablets, mobiles (landscape), 481x767px */
@media (min-width: 481px) and (max-width: 767px) {
  section {
    grid-template-columns: 1fr;
  }
}

/* Most mobiles (portrait), 320x479px */
@media (min-width: 320px) and (max-width: 480px) {
  section {
    grid-template-columns: 1fr;
  }
}