@import "media.css";

body {
  margin: 0px;
  padding: 0px;

  color: black;
  font-family: "Fjalla One",sans-serif;
  font-weight: 300;
  letter-spacing: -1px;
}

img.backgroundimg{
  position:fixed;
  top:0;
  left:0;
  height: 100%;
  width: 100%;
  /*object-fit: cover;*/
  z-index: -1;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  animation: backgroundAnimation 5s linear 0s;

  background-image: url("../images/electronic_board-1920x1280.jpg");  /* fallback */
  background-image: var(--BGimage1);

  /*overflow:visible;*/
}

a#companyname {
  position:static;
  float: left;
  padding-left: 7px;
}

a#companyname img.companyname{
  height: 150px; /* fallback */
  height: calc(var(--ref-height) * 0.08);
  /*height: 10%;  /* won't work */
}

a#logotop {
	position:static;
  float: right;
  padding-right: 7px;
}

a#logotop img.logotop {
  height: 10%; /* fallback */
  height: calc(var(--ref-height)*0.08);
}

div#content {
  position: static;
  float: left;
  background-color: rgba(0,0,0,0.8);
  height: auto;
  width: 60%;
  display: block;
  margin:var(--content-margin-top) 5% var(--content-margin-top) 5%;
  padding:50px 15% 50px 15%;
  color: white;
  font-family: "Fjalla One",sans-serif;
  font-size: 20px;
  line-height: 1.2em;
}

div#content a {
  color: #12d012;
  text-decoration: none;  /* removes the undeline */
}
