* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #1f1f1f;
}
.container {
  background-color: #1f1f1f;
  width: 600px;
  height: 750px;
  padding: 50px;
  text-align: center;
  display: block;
  line-height: 1.75;
  margin: 0 auto;
  align-items: center;
}

a{
  color: orange; 
  text-decoration: none
}

h1 {
  font-family: "Montserrat", sans-serif;
  color: #dedede;
}
p {
  font-family: "Montserrat", sans-serif;
  color: #dedede;
}

img {
  width: 50%;
}

@media (max-width: 768px) {
  .container {
    width: auto;
    height: auto;
  }

}
@media (max-width: 1024px) {
  body {
    background: #1f1f1f;
  }
  h1{
    font-size: 26px;
  }
}
