/*Border box trick*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: helvetica, arial, sans-serif;
  /* margin: 25px; */
  margin: 0;
  background-color: #ffffff;
}

main {
  display: block;
  height: 175px;
}

header {
  border-bottom: 1px solid black;
  background-color: #060071;
  margin: 0;
  display: flex;
  justify-content: center;
}

h1 {
  font-weight: bold;
  color: #ffffff;
}

.bold {
  font-weight: bold;
}

p {
  max-width: 600px;
}

li {
  margin-bottom: 5px;
}

footer {
  padding-top: 25px;
  border-top: 1px solid black;
}

footer a {
  float: left;
  margin: 5px;
}

.pet-image {
  height: 250px;
}

.dashboard div {
  display: block;
}

.pet-image-container {
  float: left;
  padding: 10px;
}

.dashboard {
  float: left;
  padding: 20px;
}

.button-container {
  margin-top: 50px;
}

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

.notification {
  opacity: 0; /*transparent*/
  font-weight: bold;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
