@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background: #111;
}

.main {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 1;
}

.info h1 {
  text-align: center;
  font-size: 48px;
  letter-spacing: 5px;
}

.info p {
  font-size: 24px;
  letter-spacing: 3px;
  margin-top: 5px;
  text-align: center;
}

.social {
  display: flex;
  margin-top: 40px;
  justify-content: space-between;
  width: 125px;
}

.social a {
  position: relative;
  background-size: cover;
  width: 50px;
  height: 50px;
}
