* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
}

.container {
  width: 100%;
  height: 100vh;
  align-items: center;
}

.inside-container {
  display: block;
  place-items: center;
  padding: 1rem 3rem;
  text-align: center;
}

img { 
  width: 600px;
  height: 192px
}


.center {
  text-align: center;
  padding-top: 30px;
  
}

p {
  font-size: 18px;
}

.symptoms {
  text-align: left;
}

.button-43 {
  background-image: linear-gradient(-180deg, #37AEE2 0%, #1E96C8 100%);
  border-radius: .5rem;
  font-size: 16px;
  color: #FFFFFF;
  display: inline-flex;
  justify-content: center;
  padding: 1rem 1.75rem;
  text-decoration: none;
  width: 300px;
  height: 68px;
  border: 0;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin-bottom: 10px;
}

.button-43:hover {
  background-image: linear-gradient(-180deg, #1D95C9 0%, #17759C 100%);
}

/* iPads and Tablets */
@media screen and (min-width: 481px) and (max-width: 768px){
  body {
    font-size: 12px;;
  }

  .button-43 {
    margin: auto;
    margin-bottom: 5px;
    /* width: auto;
    height: 74px; */
    font-size: 14px;
    align-items: center;
  }
  .btn-row {
    flex-wrap: wrap;
  }
  p {
    font-size: 16px;
    text-align: left;
  }
}
/* Mobile Devices */
@media screen and (min-width: 320px) and (max-width:480px) {
  body {
    font-size: 12px;
  }
  .button-43 {
    margin: auto;
    margin-bottom: 5px;
    width: 210px;
    height: auto;
    font-size: 12px;
    
  }
  
  p {
    font-size: 12px;
    text-align: left;
  }

  .symptoms {
    font-size: 12px;
  }
}
