@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-family: "Quicksand", Arial, Helvetica, sans-serif;
  font-size: 20px; 
  letter-spacing: -0.025em;
  line-height: 150%;
  text-decoration: none;
  box-sizing: border-box;
}

body {
  background: #4F46E5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: rgba(255,255,255,.9);
}

header {
  margin-bottom: 32px;
}

ul {
  margin-left: 20px;
}

a {
  text-decoration: underline;
  color: white;
}

.photo {
  background: url(photo.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: hidden;
}

@media (min-width: 768px) {
  main {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .photo {
    display: block;
  }
}

.insta-link {
  background: white;
  color: rgba(0,0,0,0.8);
  display: block;
  width: 100%;
  padding: 32px;
  padding-right: 24px;
  display: flex;
  gap: 16px;
  border-radius: 32px;
  align-items: center;
  /* margin-top: px; */
  text-decoration: none;
}

.insta-link span {
  color: #4F46E5;
  font-weight: bold;
}

.container {
  min-height: 100vh;
  padding: 16px;
  display: grid;
  place-content: center;
}

small a {
  font-size: 13px;
  color: white;
  text-decoration: underline;
}

.content {
  max-width: 480px;
  padding: 16px;
  display: grid;
  gap: 16px;
}