/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Varela, serif;
}
th {
  background-color: brown;
}

@font-face {
  font-family: 'Playwrite IT Moderna';
  src: url(https://htmotel.neocities.org/PlaywriteITModerna-VariableFont_wght.ttf);
}
@font-face {
  font-family: 'Merienda';
  src: url(https://htmotel.neocities.org/Merienda-VariableFont_wght.ttf);
}
@font-face {
  font-family: 'Cormorant';
  src: url(https://htmotel.neocities.org/Cormorant-VariableFont_wght.ttf);
}
@font-face {
  font-family: 'Neucha';
  src: url(https://htmotel.neocities.org/Neucha-Regular.ttf);
}

@font-face {
  font-family: 'Varela';
  src: url(https://htmotel.neocities.org/VarelaRound-Regular.ttf);
}

 .motel {
 background-image: url("https://i.ibb.co/Y4wC0fm7/IMG-0086.png");
  width: 800px;
  height: 600px;
  padding: 60px;
  margin: 0;
  border-spacing:13px;
}
.portrait {
  margin-left: 0;
  margin-right: 0;
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  padding: 10px;
}
.grid-container > grid {
  text-align: center;
  padding: 10px;
  font-size: 30px;
}

.talksprite {
  grid-column: 1;
  grid-row-start: 1;
  grid-row-end: 3;
}
.blurb{
   background-color: white;
   border: 12px solid black;
   grid-column: 2 / span 2;
   grid-column-start: 2;
   grid-column-end: 3;
}
.button {
  background-color: #dc272d;
  border-radius: 12px;
  color: white;
  width: 100px;
  height: 50px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
.button:hover {
  background-color:#911519; 
  color: white
}

.buttongrid{
  grid-column: 3;
  grid-row: 2;
}
.harry{
  font-family: "Cormorant", serif;
  font-size: 30px;
  color: green;
}
.terri{
  font-family: "Playwrite IT Moderna", serif;
  font-style: normal;
  font-size: 30px;
  color: blue;
}
.mary{
  font-family: "Neucha", serif;
  font-size: 30px;
  color: DarkGoldenRod;
}
.larry{
  font-family: "Merienda", serif;
  font-size: 30px;
  color: red;
}