﻿* {
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  /*background-color: #021027;*/
  font-family: "Open Sans";
}

header {
  background: #fff;
  display: flex;
  width: 100%;
}

section {
  width: 100%;
  height: auto;
  position: relative;
}

.main {
  width: 100%;
  height: 50vh;
  /* background-image:url('/Images/blackforestview.webp');
   background-attachment:fixed;
   background-position:center;
   background-size:cover;
   background-repeat:no-repeat;*/
  animation-duration: 3s;
  animation-name: slidein;
}

@keyframes slidein {
  from {
    height: 0%;
  }
  to {
    height: 50%;
  }
}
.spacer {
  height: 10vh;
}

.content {
  width: 100%;
  height: 50vh;
  background-image: url("/Images/Sunset1.webp");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-box div {
  width: 768px;
  max-width: 768px;
  padding: 30px;
}

.content-bottom {
  width: 100%;
  height: 25vh;
}

.textbox {
  max-width: 400px;
  width: 400px;
  height: 400px;
  background-color: #eee;
  opacity: 0.5;
  padding: 30px;
}

footer {
  padding: 10px;
  background-color: #f8f8f8;
  color: #fff;
}
