:root{
  --btnBgColor: #333333;
  --errorMsgFont: 'Space Mono', monospace;
  --btnColor: #ffffff;
  --paragraphColor: #4F4F4F;
}

.logo{
  margin: 40px;
}

img{
  width: max(539px, 286px);
}

@media(min-width: 1000px) {
  img{
    margin-left: 77px;
  }
}

button{
  width: 216px;
  height: 68px;
  color: var(--btnColor);
  background-color: var(--btnBgColor);
  cursor: pointer;
}

.error-msg h1{
  font-size: max(64px, 48px)
}

.error-msg p{
  color: var(--paragraphColor);
  width: max(381px, 328px);
  line-height: 27px;
}

.error-msg{
  font-family: var(--errorMsgFont);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.right-section{
  display: flex;
  flex-direction: column;
  row-gap: 36px;
  margin-left: 24px;
  justify-content: center;
}