/* 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-image: url('https://vacationoptions.neocities.org/swirl_pattern.png');
  color: black;
  font-family: raleway;
  
}
header {
   background-color:#eee;
  width:80%;
  margin:30px auto;
  border:10px solid #fff;
  outline:10px solid #eee;
  line-height:0;
}

h1 {
  text-align:center;
  font-family: 'Rozha One', serif;
  color:#000;
  font-size:50px;
}


h2 {
  text-align:center;
  font-family: 'Rozha One', serif;
  color:#000;
  font-size:30px;
}

table {
    width:100%;
    margin:auto;
    background:#eee;
    border:10px solid #fff;
    outline:10px solid #eee;
    -webkit-transition: all 600ms cubic-bezier(0.47, 0, 0.745, 0.715);
    transition: all 600ms cubic-bezier(0.47, 0, 0.745, 0.715);
}

th {
  background:#fff;
  font-weight:bold;
  text-align:center;
}

th a {
    color:#000;
    text-decoration:none;
}

td {
    background:#ddd;
    width:auto;
}