
* {
    box-sizing: border-box;
  }

  h1 {
    font-weight: bold;
    color: #ffffff;
  }
  
  .bold {
    font-weight: bold;
  }
  
  p {
    max-width: 600px;
  }
  
  
  li {
    margin-bottom: 5px;
  }
  
  html {
    background: url(./images/Marvel-Rivals-bg.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center; 
    background-attachment: fixed; 

    margin: 0;
    padding: 0;
  }

  body {
    font-family: helvetica, arial, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;  

  }

  header {
    text-align: center;
  }
  
  main {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content:flex-end;
    align-items: center;
  }

  .pet-image-container {
    justify-content: center;
    padding:10px;
  }
  
  .pet-image {
    height:250px;
  }

  .dashboard {
    padding-bottom: 30px;
  }
  
  .dashboard div {
    display:block;
  }
  
  .button-container {
    margin-top:20px;
  }
  
  .button-container button {
    width: 100px;
      margin-right: 10px;
      text-align: center;
      display: inline-block;
    font-size:15px;
    background-color: #1e2835;
    border-color: #404853;
    cursor:pointer;
    background-image: linear-gradient(to bottom,rgba(246,246,246,.1)0%,rgba(30,40,53,0)66%);
    color: #fafafa;
  }
