@charset "UTF-8";
/* CSS Document */

html{
  scroll-behavior: smooth;
}

body{
  background-color: #8a2243;
}

.desktop{
  display: contents;
}

.mobile{
  display: none;
}

h1, h2, h3, h4, h5{
  font-family: 'Michroma', sans-serif;
    color: #fdbc58;
}

p{
  font-family: 'Roboto', sans-serif;
    color: #fdbc58;
}

.titel{
  font-weight: bold;
  text-decoration: underline;
}

.navbar-nav{
  display: flex;
  justify-content: space-between;
  width: 45%;
  align-items: center;
}

.nav-logo{
  width: 60px;
}

.nav-link{
  font-family: 'Michroma', sans-serif;
  letter-spacing: 2px;
  color: #fdbc58;
}

.nav-link:hover{
  color: #e2a050;
}

#landing{
  height: 65vh;
}

.landing-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.dates{
  font-size: 20px;
}

.logo-background{
  position: absolute;
  background-image: url(../images/background-logo.png);
  height: 100%;
  width: 100%;
  background-size: 55%;
  background-position: right;
  background-repeat: no-repeat;
  opacity: 10%;
}

.form{
  width: 100vw;
  height: 100vh;
  background-image: url(../images/form.svg);
  background-size: 70%;
  background-position: right bottom;
  position: absolute;
  background-repeat: no-repeat;
}

/* for nav */
@media (max-width: 992px) {
	.desktop{display: none;}
  .mobile{display: contents;}
}

@media (max-width: 650px) {

.nav-logo{
  width: 75px;
}

.form{
  background-size: 200%;
}

.logo-background{
  background-size: 95%;
  background-position-x: 70px;
  background-position-y: center;
}

}
