* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 14px;
  text-decoration: none;
}
body {
  width: 100%;
  min-height: 100vh;
  background-color: #efefef;
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}
.phone img {
  height: 50rem;
}
.container {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 60%;
  height: 100vh;
  gap: 50px;
}
.content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  width: 50%;
  min-height: 34rem;
  gap: 20px;
}
.box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background: #fff;
  padding: 1.3rem 0;
  border: 1px solid lightgray;
  width: 100%;
}
box:nth-child(1) {
  min-height: 19rem;
}
.instagram-logo {
  height: 3rem;
}
.profile-photo {
  margin-top: 1rem;
  display: flex;
  border-radius: 50%;
  overflow: hidden;
}
.profile-photo img {
  height: 6rem;
}
.login {
  background-color: #0095f6;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  margin-top: 1rem;
}
.remove {
  color: #0095f6;
  margin-top: 1rem;
}
.not-account {
  color: #8d8d8d;
}
.link-blue {
  color: #0095f6;
}
.download-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.3rem 0;
}
.links {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
  padding: 1rem;
  gap: 20px;
}
.app-download {
  height: 3rem;
  width: 10rem;
}
@media (max-width: 800px) {
  .phone {
    display: none;
  }
  .content {
    width: 100%;
  }
}
