﻿@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Light.ttf");
}

body {
  background-image: url('./background.png');
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
	overflow: hidden;
}

.content {
  text-align: center;
  background-color: white;
  border-radius: 10px;
  box-shadow: 5px 5px 5px 3px rgba(0, 0, 0, 0.4);
  padding: 50px 50px 10px 50px;
}

.content h1 {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}

.content h1 .icon {
  padding-right: 30px;
}

hr {
  color: rgba(0, 0, 0, 0.4);
}

.content .copyright {
  padding: 10px;
  font-size: 0.8rem;
}