@font-face{
  font-family: 'Barlow-Thin';
  src: url('Barlow-Thin.ttf') format('truetype');
}
@font-face{
  font-family: 'Barlow-Bold';
  src: url('Barlow-Bold.ttf') format('truetype');
}
Body {
  background-color: #880015;
  background-image: linear-gradient(transparent 30%, rgb(255 255 255 /0.2));
  height: 100vh;
  font-family: 'Barlow-Thin', Sans-Serif;
}
header {
    background: rgb(255 255 255 /0.2);
    //border: thin solid rgb(255 255 255 /.4);
    backdrop-filter: blur(6px);
    font-weight: bold;
    text-align: left;
    color: lightgrey;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
}
a {
  color: lightgrey;
  text-decoration: none;
}
a:hover{
  color: #31B7FA;
}
ul{
  list-style-type: none;
}
h1 {
  color: lightgrey;
  font-family: Sans-Serif;
  text-align: center;
  line-height: 120%;
}
button {
  background: rgb(255 255 255 /0.2);
  border: thin solid rgb(255 255 255 /.4);
  backdrop-filter: blur(6px);
  color: lightgrey;
  margin: 1em;
  padding: 0.4em;
}
button:hover {
  color: #31B7FA;
}
label{
  font-weight: bold;
}
#name {
  font-family: 'Barlow-Bold';
  font-size: 2em;
  color: #31B7FA;
  padding-left: 1em;
  padding-top: 0.5em;
}
#date {
   text-align: right;
}
#main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
#box {
  width: 70%;
  //background-color:#880015;
  border-radius: 1em;
  text-align: center;
  line-height: 150%;
  padding-top: 2em;
  color: lightgrey;
 }
#welcome {
    font-family: 'Barlow-Thin';
    color: lightgrey;
    font-size: 3em;
    text-align: center;
    line-height: 120%;
 }
@media (min-width: 45em) {
  header {
    grid-template-columns: 1fr 3fr 1fr;
  }
  #name {
    padding-left: 0em;
    padding-top: 0em;
    display: flex;
    align-items: center;    
    justify-content: center;
  }
  #date {
    display: flex;
    align-items: center;    
    justify-content: center;
  }
  #box {
    width: 50%;
    //background-color:#880015;
    border-radius: 1em;
    text-align: center;
    line-height: 150%;
    margin: 2em;
    color: lightgrey;
  }
  #welcome {
    font-size: 5em;
 }
}