
* {
    box-sizing: border-box;
}

.root {
    max-width: 1920px;
    min-height: 100vh;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Roboto', 'Arial', 'sans-serif';
    font-size: 62.5%;
    background-color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

.header {
    display: flex;
    margin: 0 auto;
}

.header__text {
    display: flex;
    margin: 0 auto;
    margin-top: 100px;
    font-size: 36px;
	text-align: center;
}

.body {
    display: flex;
    margin: 0 auto;
    justify-content: center;
}

.body__images {
    display: flex;
    justify-content: center;
    width: 100%;
}

.photo {
  width: 300px;
  animation: sway 2.5s ease-in-out infinite;
  transform-origin: center bottom;
  margin: 50px 0;
}

@keyframes sway {
  0% {
    transform: rotate(0deg) scale(1);
  }

  25% {
    transform: rotate(8deg) scale(1.05);
  }

  50% {
    transform: rotate(0deg) scale(1);
  }

  75% {
    transform: rotate(-8deg) scale(1.05);
  }

  100% {
    transform: rotate(0deg) scale(1);
  }
}

.footer {
    display: flex;
    margin: 0 auto;
    justify-content: center;
}
