/*this is the start of the welcome page*/
body{
  background:linear-gradient(170deg, white,rgb(226, 226, 226));
  height: 100vh;
}
.welcome{
  display:grid;
  height: 85vh;
  align-content: center;
  min-height:400px;

}
.letterbox{
  display: grid;
  margin:auto;
}
.letterbox img{
  width:250px;
  margin:auto;
}
.welcome h1{
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size:14pt;
  padding-top:30px;
  font-weight: 400;
  color:#5A5A5A;
  text-align:center;
}
.welcome p{
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size:14pt;
  color:#b9b7b7;
  text-align: center;
}
.welcomelogo{
  display: grid;
}
.welcomelogo a{
  display: flex;
}
.welcomelogo img{
  width:150px;
  margin:auto;
}