* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
  
html, body {
  width: 100%;
  min-height: 100%;
  max-width: auto;
}

:root {
  --main-color: #f7d917;
  --button-color: #111;
}

body {
  background: #202020 url("background.jpg");
  background-position: -400px 0%;
  position: relative;
  font-family: 'Roboto', sans-serif;
}

@media screen and (max-width: 1100px) {
    body {
        background: #202020;
    }
}
  
#main {
  position: relative;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: calc(100vh - 60px);
  max-height: auto;
  display: grid;
  place-items: center;
}

.container {
  position: relative;
  width: 500px;
  margin: 0 auto;
  text-align: center;
  transform: translateY(20px);
}

.logo {
  width: auto;
  width: 300px;
  min-width: 200px;
  margin-bottom: 20px;
}

.title {
  margin-bottom: 30px;
  color: var(--main-color);
}

h1 {
  font: 30pt 'Oswald', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}

h2 {
  font-size: 15pt;
  font-weight: 600;
}

.links li {
  padding: 10px 0;
}

.links li a {
  background: var(--button-color);
  color: white;
  font-weight: 600;
  display: block;
  width: 80%;
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  margin: auto;
  transition: all .2s ease-in-out;
}

.links li a:hover {
  transform: scale(1.06);
}

.links li:first-child a {
    background: var(--main-color);
    color: var(--button-color);
}

footer {
  color: #777;
  position: relative;
  bottom: 0px;
  width: 100vw;
  height: 30px;
  font-size: 10pt;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

footer a {
  color: #777;
  font-weight: bold;
}

footer a:hover {
  color: var(--main-color);
}

@media screen and (max-width: 720px) {
  .container {
    width: 80vw;
  }
}
