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

body {
  font-size: 14px;
}

.container {
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 30vh;
}

.logo-col, .description-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo-col {
  justify-content: flex-start;
  margin-left: 20%;
  width: 15%;
}

.description-col {
  align-items: flex-start;
  width: 50%;
  padding-left: 10px;
  text-align: left;
}

.logo-container {
  width: 158px;
  height: 158px;
  transform: rotateZ(0);
  transition: all 1s ease-in-out;
}

.logo-container:hover {
  cursor: pointer;
  transform: rotateZ(360deg);
}

.logo-container > img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.title {
  margin: 20px 0 10px;
  color: rgba(30,30,30,1);
  font-family: Inter;
  font-weight: Bold;
  font-size: 100px;
  letter-spacing: -8px;
  text-align: left;
}

.subtitle {
  margin: 20px 0;
  color: rgba(0,0,0,1);
  font-family: Inter;
  font-weight: Medium;
  font-size: 24px;
}

.description {
  margin: 10px 0;
  color: rgba(0,0,0,1);
  font-family: Inter;
  font-weight: Medium;
  font-size: 16px;
}

.subtitle > a, .subtitle > a:hover {
  text-decoration: none;
  color: rgba(0,0,0,1);
}

.contact {
  margin: 0 0 20px;
  color: rgba(74,74,72,1);
  font-family: Inter;
  font-weight: Medium;
  font-size: 24px;
}

.links-container {
  display: flex;
}

.link-item {
  width: 40px;
  height: 40px;
  transform: scale(1);
  transition: all .4s ease-in-out;
}

.link-item:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.link-item > img {
  object-fit: contain;
  width: 100%;
  height: 100%;  
}

@media screen and (max-width: 560px) {
  .container {
    padding: 1rem;
    flex-direction: column;
  }

  .logo-col {
    justify-content: flex-start;
    margin-left: 0;
    width: 100%;
  }
  
  .description-col {
    align-items: flex-start;
    width: 100%;
    padding-left: 10px;
    text-align: left;
  }

  .logo-container {
    width: 100px;
    height: 100px;
  }
  
}

