* {
  padding: 0;
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-optical-sizing: auto;
}

html {
  background-color: white;
}

body {
  min-height: 100dvh;
  min-width: 100dvw;
  display: flex;
  align-items: center;
  justify-content: center;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main--content {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 50px;
  padding: 50px;
  border-radius: 16px;
  transition: 0.4s;
  user-select: none;
  cursor: pointer;
}

.main--content:hover {
  transform: scale(1.02);
}

h3 {
  font-weight: 200;
  letter-spacing: 7.5px;
  color: #4e4e4e;
}

@media (max-width: 1250px) {
  .logo {
    width: 300px;
  }

  .main--content {
    padding: 20px;
  }
  h3 {
    font-size: 14px;
    
  }
}
