body, html {
    height: 100%;
}

.logo {
    width: 300px;
    height: 300px;
    
}

.ubuntu-regular-italic {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: italic;
  }

/* The hero image */
.hero {

display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url("../images/hero.png");

  /* Set a specific height */
  height: 100%;

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Place text in the middle of the image */
.hero-text {
  color: rgb(243, 236, 236);
  text-align: center;
}

.hero-txt-title {
    font-size: 80px;
    font-weight: 700;
    font-family: "Ubuntu", sans-serif;
    
}

.button {
width: 200px; 
padding: 10px 24px;
background: rgba(255, 255, 255, 0.12); 
border: #000 1px solid;
border-radius: 4px; 
color: rgb(243, 236, 236); 
font-size: 20px;
text-align: center; 
text-decoration: none; 
letter-spacing: 1px; 
transition: all 0.3s ease-out;
}

.button:hover {
background: #111110;
color: rgb(243, 236, 236);
}