@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;900&display=swap');

html {
    max-width: 40%;
    margin: auto;
    font-family: 'Merriweather', serif;
    background-color: #040C10;
}
body {
    background-color: #0C2531;
    color: white;
    padding: 5%;
    border-radius: 5%;
}
p {
    font-size: 1em;
}
h1 {
    font-size: 2em;
    font-weight: 900;
    text-align: center;
}
img {
    width: 100%;
}

.actionButton {
    background-color: white;
    color: #040C10;
    text-decoration: none;
    font-size: 1em;
    padding: 0.5%;
    display: inline-block;
    margin: 0.5% 0;
}

@media only screen and (max-width: 900px) {
  html {
    max-width: 100%;
  }
}