html {
  box-sizing: border-box;
  font-size: 16px;
}

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

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #0188d1;
    color: white;
    text-align: center;
    font-family: "IBM Plex Sans",-apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif;
    padding-top: 5%;
    overflow-x: hidden;
    overflow-y: hidden;
}

.center-image {
    background-image: url('/images/background.min.png');
    background-size: cover;
    background-repeat: no-repeat;
    min-width: 800px;
    max-width: 90%;
    min-height: 590px;
}

p {
    width: 70%;
    max-width: 960px;
    font-size: 1.3rem;
}

h1 {
    margin-bottom: 3%;
    font-size: 2.5rem;
}

.links {
    display: flex;
    flex-direction: row;
    width: 95%;
    max-width: 650px;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    margin: 0 auto;
    padding-bottom: 0;
}

.links a {
    padding: 10px;
    background-color: white;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    width: 200px;
    color: black;
    font-size: 1.1rem;
}

.links a.view {
    background-color: #ef731a;
    color: white;
}

@media only screen and (max-width: 600px) {

  .links {
    flex-direction: column;
  }

  .links a {
    margin-bottom: 30px;
  }

}
