

.fullPageFrame
{
  background-image: url('../images/index-background.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(65%);
}

.fullPageContent
{
  box-sizing: border-box;

  position: absolute;
  box-sizing: border-box;
  /*  border: 2px solid red;  */

  color: white;
  background-color: rgba(0,0,0,0);
  /* width: 99%; */

  max-width: 900px;

}

.index-headline
{
  font-size: 48px;
  color: white;
  font-weight: bold;
  line-height: 50px;
}

.index-subline
{
  margin-top: 20px;
  font-size: 18px;
  line-height: 32px;
  color: white;
  /* max-width: 500px; */
}

.index-button
{
  box-sizing: border-box;
  margin-top: 70px;
  margin-right: 20px;
  font-size: 18px;
  color: black;
  height: 50px;
  float: left;
  
  padding-left: 30px;
  padding-right: 30px;
    
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  background-color: gold;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;

  cursor: pointer;
}

.down-button
{
  width: 80px;
  height: 80px;

  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);

  background-image: url('../images/arrow_circle_down.svg');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.down-button:hover
{
  cursor: pointer;
}

/*  ----------------------------  FLOAT MENU -------------------------------------------------  */


