@font-face {
  font-family: 'lowres';
  src: url('./fonts/LowresPixel-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'unicode';
  src: url('./fonts/fs-pixel-sans-unicode-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html {
    background-image: linear-gradient(to bottom, lightgrey, whitesmoke);
    background-color: whitesmoke;
    height: 100%;
}

body {
    height: 90%;
    margin: 20px;
    padding: 30px;
    border-radius: 7px;
    background-color: whitesmoke;
}
.main {
    margin: auto;
    border-bottom: 7px dashed lightgray;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
span {
    font-size: 20px;
    font-family:monospace;
}

h1 {
    font-family: 'unicode';
    color: rgb(67,132,244);
    margin:0px;
    padding:20px;
    font-size: 50px;
    font-weight: normal;
    text-align: left;
}

.split {
  display: flex;
  align-items: flex-start;
  margin-top:50px;
}

.text, .image {
  width: 50%;
}

.image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.image svg {
  display: block;
  width:100%;
  font-family: 'Pix32';
}
.image img {
  display: block;
  max-width: 100%;
  width:80%;
  border: 4px dashed lightgray;
}

a {
    color: rgb(67,132,244);
    text-decoration: none;
    text-shadow: 3px 3px white;
}
a:hover {
  color: gray;
}

.title {
  text-shadow: 2px 2px rgb(0, 0, 0);
  display: inline;
}
.title2 {
  text-shadow: 3px 3px lightgray;
  display: inline;
}