@import url('fonts/GTWalsheimPro/stylesheet.css');
@import url('fonts/iconmoon/style.css');

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

:root {
  --color-bg: #f7f6f4;
  --color-text: #222222;
  --color-icon: #f9d6d5;
  --color-icon-hover: #fe7171;
  --color-image-back-shadow: rgba(162, 163, 188, 0.24);
}

body {
  background-color: var(--color-bg);
  font-family: GT Walsheim Pro;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  animation: fade 0.8s linear;
}

.block {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.social-links {
  display: flex;
  flex-direction: row;
}

h1 {
  color: var(--color-text);
  font-weight: 700;
}

h2 {
  color: var(--color-text);
  font-weight: 700;
  margin-top: 12px;
}

p {
  color: var(--color-text);
  font-weight: 400;
  line-height: 30px;
  margin-top: 48px;
}

p:first-of-type {
  margin-top: 40px;
}

a {
  text-decoration: none;
  color: var(--color-icon-hover);
}

img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  box-shadow: 0 6px 24px 0 var(--color-image-back-shadow);
}

/* mobile */
@media all and (min-width: 320px) and (max-width: 1024px) {
  .block-text {
    width: 100%;
  }

  .block-photo {
    width: 100%;
  }

  body {
    margin: 96px;
    flex-direction: column;
  }

  h1 {
    font-size: 96px;
    line-height: 102px;
  }
  
  h2 {
    font-size: 48px;
    line-height: 60px;
  }
  
  p {
    font-size: 48px;
    line-height: 60px;
  }

  .social-links {
    width: 100%;
    justify-content: start;
    margin: 48px 0;
  }

  .social-links a {
    font-size: 64px;
    margin-right: 48px;
    padding-bottom: 32px;
  }
}

/* desktop */
@media all and (min-width: 1025px) {
  .block-text {
    width: 520px;
  }
  
  .block-photo {
    width: 400px;
  }

  h1 {
    font-size: 48px;
    line-height: 61px;
  }
  
  h2 {
    font-size: 24px;
    line-height: 30px;
  }
  
  p {
    font-size: 24px;
    line-height: 30px;
  }

  .social-links {
    margin-top: 40px;
  }

  .social-links a {
    font-size: 24px;
    margin-right: 32px;
  }
}