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

body {
  font-family: 'helvetica', 'verdana', sans-serif;
  font-weight: 100;
  box-sizing: border-box;
}

.scroll-headlines {
 height: 30px;
 overflow: hidden;
 position: relative;
 background: #eff5ff;
 color: black;
}

.scroll-headlines p {
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 30px;
 text-align: center;
 /* Starting position */
 -moz-transform:translateX(100%);
 -webkit-transform:translateX(100%);
 transform:translateX(100%);
 /* Apply animation to this element */
 -moz-animation: scroll-headlines 15s linear infinite;
 -webkit-animation: scroll-headlines 25s linear infinite;
 animation: scroll-headlines 25s linear infinite;
}

/* Move it (define the animation) */
@-moz-keyframes scroll-headlines {
 0%   { -moz-transform: translateX(100%); }
 100% { -moz-transform: translateX(-100%); }
}

@-webkit-keyframes scroll-headlines {
 0%   { -webkit-transform: translateX(100%); }
 100% { -webkit-transform: translateX(-100%); }
}

@keyframes scroll-headlines {
 0%   {
 -moz-transform: translateX(100%); /* Browser bug fix */
 -webkit-transform: translateX(100%); /* Browser bug fix */
 transform: translateX(100%);
 }
 100% {
 -moz-transform: translateX(-100%); /* Browser bug fix */
 -webkit-transform: translateX(-100%); /* Browser bug fix */
 transform: translateX(-100%);
 }
}

.logo-fix {
  position: absolute;
  left: 10px;
  height: 45px;
  margin-left: 10px;
  margin-top: 7px;
  display: inline-block;
}

.header {
  background: #000000;
  height: 60px;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 5;
}

.navbar {
  display: none;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.navbar a {
  height: 60px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  display: inline-block;
  line-height: 60px;
  padding: 0 7px;
  transition: background .5s;
  text-decoration: none;
}

.navbar a:hover {
  background: rgb(237, 35, 13);
  color: #fff;
  cursor: pointer;
  transition: background .5s;
}

.navdrop {
  width: 30px;
  margin: 15px 20px 0 0;
  float: right;
  position: relative;
}

.btn {
  opacity: 0.9;
  background-color: black;
  color: white;
  border: none;
  float: right;
  cursor: pointer;
}

.block div {
  height: 3px;
  background-color: white;
  margin: 5px 0;
  width: 30px;
  border-radius: 25px;
}

.dropmenu {
  display: none;
  position: absolute;
  right: 5px;
  top: 30px;
  background-color: white;
  text-align: left;
  cursor: pointer;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
  min-width: 160px;
  z-index: 6;
  color: black;
}

.dropmenu a {
  display: block;
  height: 30px;
  margin: 0 auto;
  text-align: left;
  color: black;
  line-height: 30px;
  padding: 0 7px;
  transition: background .5s;
  text-decoration: none;
}

.dropmenu a:hover {
  background: rgb(237, 35, 13);
  cursor: pointer;
  color: #FFFFFF;
  transition: background .5s;
}

.navdrop:hover .dropmenu {
  display: block;
}


/*.dropmenu a:hover {background-color: rgb(237, 35, 13)}*/

.card {
  display: inline-block;
  background-color: white;
  margin-left: 1%;
  margin-right: 1%;
  margin-top: 10px;
  text-align: center;
  padding: 3px;
  border: 3px solid #000000;
  border-radius: 4px;
  position: relative;
  width: 80%;
  max-width: 200px;
  height: 200px;
}

.card .text {
  font-size: 20px;
  color: black;
}

.card img {
    max-width: 100%;
    height: auto;
    position: center;
}

.image {
    width: auto;
}

.card .text-bottom {
  font-size: 20px;
  color: black;
}

@media screen and (min-width: 450px) {
  .navbar {
    display: none;
  }
  .navdrop {
    display: inline-block;
  }
  .card {

  }
}

@media screen and (min-width: 700px) {
  .navbar {
    display: inline-block;
  }
  .navdrop {
    display: none;
  }
  .card {

  }
}

@media screen and (min-width: 950px) {
  .navbar {
    display: inline-block;
  }
  .navdrop {
    display: none;
  }
  .card {

  }
}

.main {
  text-align: center;
}

.main p {
  text-align: left;
  font-size: 1rem;
  width: 85%;
  margin: auto;
  padding-bottom: 20px;
}

.main a:link {
  color: crimson;
}

.main a:visited {
  color: crimson;
}

.main a:hover {
  color: firebrick;
}

.motto {
  padding: 20px;
}

.footer {
  padding: 20px;
  background: #000;
  color: #fff;
  height: 150px;
  width: 96%;
  text-align: right;
  line-height: 1.5;
}


/* @supports (-webkit-text-stroke: 1px white) {
  .lead h1 {
    -webkit-text-stroke: 1px black;
    -webkit-text-fill-color: black;
  }
  .lead p {
    -webkit-text-stroke: 1px black;
    -webkit-text-fill-color: black;
  }
}  */
