@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300&display=swap');

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

body {
  background-color: #000;
  font-family: 'Exo 2', sans-serif;
  min-height: 100vh;
  min-width: 100vw;
}

main {
  align-items: center;
  background-color: rgba(0,0,0,.3);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100vh;
  justify-content: end;
  left: 0;
  position: absolute;
  top: 0;
  width: 100vw;
}

img {
  height: auto;
  max-width: 500px;
  width: 90%;
}

footer {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  padding: 1.3rem 0;
  margin-bottom: 5rem;
}