* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Lato;
  background-color: rgb(57, 60, 66);
}

h1 {
  font-size: 8rem;
}

p {
  font-size: 2rem;
}

section {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 110vh;
  color: white;
}

img {
  width: 50%;
}

.logos {
  display: flex;
}

.logo:nth-child(2) {
  transition-delay: 200ms;
}

.logo:nth-child(3) {
  transition-delay: 300ms;
}

.logo:nth-child(4) {
  transition-delay: 400ms;
}

.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  transition: all 1s;
}

.show {
  opacity: 1;
  filter: blur(0px);
  transform: translateX(0);
}



/* twitter badge */

.twitter {
  position: fixed;
  display: block;
  right: 12px;
  top: 12px;
}

.twitter svg {
  width: 32px;
  height: 32px;
  fill: rgb(66, 239, 255);
  border: none;
}