@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #eeeeee;
  color: #1e253b;
  font-family: "Montserrat", sans-serif;
}

.container {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 20px;
}

.title {
  padding: 10px 0;
  background: #1e253b;
  text-align: center;
  color: #ffffff;
  font-size: 34px;
  margin-top: 50px;
}

.img {
  margin: 30px 0;
  height: 350px;
  max-width: 100%;
  background: transparent url("/assets/studio.jpg") center center/contain no-repeat;
}

.paragraph {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
}

.contact-p {
  margin: 30px auto 0;
  padding: 10px 0;
  background: #1e253b;
}
.contact-p p {
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.contacts p {
  text-align: center;
}
.contacts span,
.contacts a {
  color: #1e253b;
  text-decoration: none;
  font-weight: bold;
}
.contacts a:hover {
  text-decoration: underline;
}

@media (max-width: 500px) {
  .img {
    margin: 0;
  }
  .paragraph {
    font-size: 16px;
  }
  .contact-p {
    font-size: 16px;
  }
}