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

body{
  background: url("../img/inside.jpg") no-repeat center center fixed;
  background-size: cover;
  background-color: #cccccc;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

h1{
  font-family: "Outfit", sans-serif;
  font-size: 72px;
  color: white;
  z-index: 2;
  position: relative;
  line-height: 1;
  text-align: center;
}

.container{
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.quote{
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 200px);
}

.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  z-index: 3;
}

.navbar a{
  color: white;
  text-decoration: none;
  margin-left: 1rem;
}

.kusama{
  font-family: "Outfit", sans-serif;
  text-align: left;
  font-size: 56px;
  font-weight: 700;
}

.red{
  color: #F22F1D;
}

.nav-right{
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 700;
  word-spacing: 2rem;
}

.quote-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button{
  color: white;
  border: 3px solid white;
  padding: 0.5rem 1.5rem;
  z-index: 4;
}

.button:hover{
  background-color: white;
  border-color: white;
}

.button:hover .button_text {
  color: black;
}

.button_text{
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
}

footer{
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  background-color: black;
  z-index: 5;
}

.footer_text{
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: white;
}

p{
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.bg_overlay{
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}


