/* 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 {
  margin: 0;
  min-height: 100vh;
  background-image: url("IMG_6080.jpeg");
  background-size: cover;
  background-position: center;
}
.angel-text {
  font-family: 'Meow Script', cursive;
  color: #87ceeb;
  text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
  font-size: 2em;
}
 /* This makes the middle and sidebar sit next to each other */

.layout{
    width:1100px;
    margin:50px auto;
    display:grid;
    grid-template-columns:750px 280px;
    gap:30px;
}

.tab{
    display: block;
    text-decoration: none;
    color: #6d92b3;
    background: linear-gradient(to right, #f8fcff, #dff2ff);
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 14px;
    border: 1px solid #cde9ff;
    box-shadow: inset 0 0 6px rgba(255,255,255,0.8);
    transition: .25s ease;
}

.tab:hover{
    transform: translateX(6px);
    background: linear-gradient(to right, #ffffff, #cfeaff);
}
 