body {
  background-color: #003566;
  height: 100%;
  color: #ffffff,

}

.desktop {
  height : 140px;
  width: 350px;
  font-size: 24px;
  background-color: #003566;
  color: #ffffff;
  border: 3 #183446;
  border-radius: 25px;
}

.desktop {
  transition-duration: 0.4s;
}

.desktop:hover {
  background-color: #dda15e; /* Light brown */
  color: #000000;
  border-color: #1E5128; 
}


.mobile {
  height : 140px;
  width: 350px;
  font-size: 24px;
  background-color:#001d3d;
  color:#ffffff;
  border: 3 #279AF1;
  border-radius: 25px;
}

.mobile {
  transition-duration: 0.4s;
}

.mobile:hover {
  background-color: #dda15e; /* Light brown */
  color: #000000;
  border-color: #1E5128;
}

h1 {
  text-align: center;
  border: 3 #161D6F;
  border-radius: 15px;
  font-size: 8em;
  color: #161D6F;
}

h2 {
  text-align: center;
  border: 3 #161D6F;
  border-radius: 25px;
  font-size: 5em;
  color: #161D6F;
}

h1 span {
  background-color: white;
  border-radius: 15px;
  border-style: solid;
  position: relative;
}

h2 span {
  background-color: white;
  border-radius: 15px;
  border-style: solid;
  position: relative;
}

.center {
  margin:auto;
  padding-top: 10px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 40px;
  width: 60%;
}

.header-image {
  background-image: url("heart-image.png");
  background-size: contain;
}

.background-image {
  background-image: url("beach.jpg");
  overflow: hidden;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
}


@media screen and (max-width: 480px) {
    body {
        width: 390px%;
        height: 100vh;
    }

    h1 {
      font-size: 3em;
    }

    h2 {
      font-size: 2em;
    }

    div {
      width: 390px;
    }

    td {
        display: block;
        width: 100%;
        overflow: scroll;
      }

    .desktop {
      height : 100px;
      width: 250px;
      font-size: 16px;
      background-color: #279AF1;
      color: #F0F7F4;
      border: 3 #183446;
      border-radius: 15px;
    }
  
  .swab {
      height : 100px;
      width: 250px;
      font-size: 16px;
      background-color: #279AF1;
      color: #F0F7F4;
      border: 3 #183446;
      border-radius: 15px;
    }
  
    .mobile {
      height : 100px;
      width: 250px;
      font-size: 16px;
      background-color: #81BFDA;
      color: #F0F7F4;
      border: 3 #183446;
      border-radius: 15px;
    }

