
@import url('https://fonts.googleapis.com/css2?family=Leckerli+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mr+Dafoe&display=swap');

*{
  color: white;
  margin: 0px;
  padding: 0px;
}
body{
  width: 100%;
}
p {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
}
h1{
  font-family: "Mr Dafoe", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
}

.img{
  overflow: hidden;
}

.image-container {
  overflow: hidden;
  height: 70%;
}
.image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  scale: 1.5;
  object-position: 0% 30%;
}

main{
  background: #171717;
}

.social-btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  color: white;
  background-color: #000;
  font-size: 1.5rem;
}

.social-btn:hover{
  color: white;
  background-color: #302f2f;
  transition: transform 500ms;
  transform: scale(1.05);
}

@media (min-width: 768px) {
  *{
  color: white;
  margin: 0px;
  padding: 0px;
}
body{
  width: 100%;
}
p {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
}
h1{
  font-family: "Mr Dafoe", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 6rem;
}

.img{
    object-position: 60%;
}

.image-container {
  height: 100vh;
  overflow: hidden;
}
.image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  scale: 1.5;
  object-position: 0% 30%;

}

main{
  background: #171717;
}

.social-btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  color: white;
  background-color: #000;
  font-size: 1.5rem;
}

.social-btn:hover{
  color: white;
  background-color: #302f2f;
  transition: transform 500ms;
  transform: scale(1.05);
}

}