@import url("https://fonts.googleapis.com/css?family=Roboto:400,100,300,700");

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  color: #232323;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
  font-size: 15pt;
  line-height: 1.25;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body #image-background {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  filter: blur(4px) brightness(1);
  -webkit-filter: blur(4px) brightness(0.6);
  object-fit: cover;
  background: rgba(0, 0, 0, 0.4);
}

main {
  width: 100vw;
  position: relative;
  height: 100%;
}

a {
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  cursor: pointer;
  color: #FFF;
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
}

p {
  font-size: 18px;
}

section ul li {
  display: inline-block;
  width: 13rem;
}

.main {
  position: absolute;
  width: 100%;
}

.content {
  text-align: center;
  vertical-align: middle;
}

.container {
  padding-top: 64px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  color: #fff;
  font-weight: bold;
  font-size: 67px;
}

h2 {
  font-weight: 400;
  color: white;
}

.date {
  margin-top: 48px;
}

.date-small{
  margin-top: 16px;
}

.date img {
  padding-bottom: 4px;
}

.headline-wrapper,
.tagline {
  margin-bottom: 64px;
}

.footer {
  margin-top: 64px;
  margin-bottom: 32px;
}

.footer a {
  color: rgba(255, 255, 255, 0.5);
}

.footer a:hover {
  color: rgba(255, 255, 255, 1);
}

.instagram-button {
  background-color: #360259;
  color: white;
  padding: 16px 24px;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 24px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.instagram-button:hover {
  background-color: transparent;
  border: 1px solid white;
}

.instagram-button:hover svg {
  fill: #360259;
}

.icon {
  margin-right: 16px;
  width: 24px;
}

.logo {
  width: 400px;
  margin-bottom: 24px;
}

.subline {
  line-height: 34px;
}

@media screen and (max-width: 768px) {
  .logo {
    width: 250px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 24px;
  }

  .headline-wrapper {
    margin-bottom: 32px;
  }

  .date {
    margin-top: 32px;
  }

}