/* Specific styling */


/* Styling for the hero banner */
.welcome {
  /* Sizing */
  width: 100vw;
  height: 100vh;

  /* Flexbox container */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  
  
  /* Background styles */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../voima-images/voima-bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
 
  
}

.welcome-2 {
  /* Sizing */
  width: 100vw;
  height: 100vh;

  /* Flexbox container */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  
  
  /* Background styles */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../voima-images/voima-bg-a.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  
}
.welcome-text {
  color: white;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    background-color: #DDD4C3;
}
.one-half.column img {
    margin: auto;
    width: 80%;

}
.one-half.column p {
  margin: auto;
  width: 80%;
}

pre {
    -webkit-overflow-scrolling: touch;
    font-family: "Courier New", monospace;
    font-size: 0.9rem;
    margin: 0 0 2rem 0;
  }

}
a:link {
color : #6D6D6D;
font-weight : bold;
text-decoration : none;
}
a:visited {
color : #6D6D6D;
font-weight : bold;
text-decoration : none;
}
a:hover {
color : #6D6D6D;
font-weight : bold;
text-decoration : none;
}
.nav {
text-align : center;
font-size : 0.9em;
}
a span {
	display: none;
	text-decoration: none;
}

a:hover {
/** fix for IE6 popup bug.  nice one Microsoft! */
	overflow: hidden;
	text-decoration: none;
}

a:hover span {
	display: inline;
	border: 1px solid white;
	position: absolute;
	background-color: #DDD4C3;
	padding: 10px;
	margin-left: 10px;
	overflow: hidden;
}
/* Responsive layout - makes a 1 column layout instead of a multi column layout */
@media (max-width: 800px) {
    .row {
      flex-direction: column;
    }
}

/* FOOTER background is black */
.footer{
    background-color: black;   
    font-size: 18px;
    color: white;
    text-align: center;
    padding-top: 2px;
    padding-bottom: 0px;
  }
  .footer a {
    text-decoration: none;
    color: deeppink;
  }
  .footer a:hover {
    color: orange;
  }