@font-face {
  font-family: Raleway;
  src: url('./resources/fonts/Raleway/Raleway-Light.ttf');
}

html {
  height: 100%;
  margin: 0px;
  padding: 0px;
}

body {
  height: 100%;
  margin: 0px;
  padding: 0px;
  background-color: rgba(33, 33, 33);
  font-family: 'Raleway';
}

.background {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('./images/home.jpg');
  background-size: cover;
  opacity: 0.50;
}

.content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.horizontal {
  width: 30%;
}

.logo {
  width: 15%;
}

.slogan {
  margin: 40px 0px;
  color: white;
  font-size: 35px;
}

a {
  text-decoration: none;
}

.button {
  padding: 14px 30px;
  border: 1px solid #f39c12;
  border-radius: 1px;
  transition: background-color 1s, color 1s;
  background-color: transparent;
  color: #f39c12;
  font-size: 18px;
  cursor: pointer;
}

.button:hover {
  background-color: #f39c12;
  color: white;
}

.horizontal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0px 0px 0px;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 0px 0px 0px;
}

.powered {
  color: white;
  font-size: 11px;
}

.powered-logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.powered-logo img {
  height: 30%;
  margin: 15px 5px 0px 5px;
}