/* 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." */

@font-face {
    font-family: 'Spiral Swash';
    src: url('/SpiralSwash.woff2') format('woff2'),
        url('/SpiralSwash.woff') format('woff'),
        url('/SpiralSwash.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
    background-image: url('spiralflowerbgd.jpg');
    background-size: cover;
}

/* Style the header */
.header {
  grid-area: header;
  position: relative;
  background-color: #FF2483;
  text-align: center;
  font-size: 30px;
  font-family: 'Spiral Swash', sans-serif;
  margin-top: 40px; margin-right: 40px; margin-left: 40px; margin-bottom: 10px;
  color: #D4FFB8;
  letter-spacing: 3px;
}

.flyinggoosegif {
  position: absolute;        /* Pins it to the bottom edge */
  left: 5%;
  bottom: 100%
}

.main-grid {
  display: grid;
  grid-template-areas: 
    'header header header header header header' 
    'left middle middle middle middle right' 
    'footer footer footer footer footer footer';
    grid-column-gap: 10px;
} 

.left,
.middle,
.right {
  padding: 10px;
}

.left {
  grid-area: left;
  height: 600px;
  margin-top: 0; margin-left: 40px; margin-bottom: 0;
  background-color: #FF2483;
}

.middle {
  grid-area: middle;
  height: 600px;
  margin-top: 0; margin-bottom: 0;
  background-color: #FF2483;
}

/* Style the right column */
.right {
  grid-area: right;
  height: 600px; margin-top: 0; margin-bottom: 0; margin-right: 40px;
  background-color: #FF2483;
}

/* Style the footer */
.footer {
  grid-area: footer;
  background-color: #FF2483;
  padding: 10px;
  text-align: center;
  margin-top: 10px; margin-left: 40px; margin-right: 40px;
}


