
html {
    height: 100%;
}

body {
    font-family: "Overlock", sans-serif;
    font-weight: 400;
    font-style: normal;
    min-height: 100%;
  }
  
i
   {
    font-family: "Overlock", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
b {
    font-family: "Overlock", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
em {
    font-family: "Overlock", sans-serif;
    font-weight: 700;
    font-style: italic;
  }

h1, h2, h3, h4, h5, h6 {
    font-family: "Voltaire", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

.home {
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    color: white;
}

.home h1 {
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

.info {
    text-align: center;
}

.button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    color: black;
    text-decoration: none;
}

.button:hover {
    background: yellow;
}
    

