body {
  width: 100vw;
}

main {
  width: 70%;
  color: var(--text-color);
}

.button {
  position: absolute;
  top: 0;
  right: 10px;
  color: #ffffff;
  background-color: var(--button-color);
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.563rem 1.125rem;
  font-size: 100%;
  border-radius: 0.25rem;
  transition: all 0.5s; /* auto transition for fade out and fade in */
}

.button:hover,
.button:focus,
.button:active {
  background-color: var(--button-color-hover);
  scale: 1.7; /* Note: should be "transform: scale(1.7);" for scaling */
  cursor: pointer;
}

.paragraph {
  margin-top: 10px;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.paragraph > p {
  width: 90%;
  font-size: 20px;
  margin: 0;
  padding: 0;
}

.paragraph > img {
  width: 400px;
  height: auto;
  border-radius: 10px;
  border: var(--button-color) 5px solid;
  float: right;
}

@media only screen and (max-width: 950px) {
  main {
    width: 80%;
  }

  .paragraph {
    flex-direction: column;
  }

  .paragraph > img {
    width: 80%;
    height: auto;
    border-radius: 10px;
    border: var(--button-color) 5px solid;
    margin-top: 10px;
  }

  .button {
    right: 10px;
  }
}