* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  font-family: 'Anton', sans-serif;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 0 1rem;
}

.top {
  position: relative;
  display: inline-block;
}

.logo {
  display: block;
  width: 80vw;
  max-width: 600px;
  height: auto;
}


.profile-photo {
  position: absolute;
  bottom: 115px;
  right: 30px;
  width: 250px;
  height: 250px;
}


.social {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.social img {
  width: 48px;
  height: 48px;
}

@media (max-width: 768px) {
	.hero{
		justify-content: normal;
		padding: 50px 1rem;
	}
	
  .top {
    position: static;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .profile-photo {
    position: static;
    width: 150px;
    height: 150px;
    margin-top: 1rem;    
    margin-bottom: 1rem;    
  }

  .logo {
    width: 90vw;
    max-width: 500px;
    margin-bottom: 1.5rem;
  }

  .social {
    margin-top: 0;
  }
}