@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Ballet:opsz@16..72&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a:link {
  color: rgb(81, 81, 81);
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: rgb(81, 81, 81);
  background-color: transparent;
  text-decoration: none;
}
body {
  padding: 1em 2em 1em 2em;
}
body {
  cursor: url(vinn.png) 25 25, pointer;
}

main {
  pointer-events: none;
}
a:hover {
  cursor: url(hovervinn.png) 25 25, pointer;
}
#link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 6em; */
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

#link a {
  text-decoration: none;
  text-decoration-color: rgb(81, 81, 81);
}
#link a:visited {
  color: rgb(81, 81, 81);
}

#link > a > div {
  /* padding-bottom: 1em;
  padding-left: 2em;
  padding-right: 8em;
  padding-top: 1em; */
}

#logo img {
  width: 100px;
}

#welcome-block {
  animation: fadeIn 2s;
  text-align: center;
  padding-right: 9em;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#hello {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 80px;
  color: rgb(81, 81, 81);
}

#weel {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 28px;
  color: rgb(81, 81, 81);
}
#portfolio {
  font-family: "Ballet", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  opacity: 0;
  font-style: normal;
  font-size: 320px;
  color: rgb(81, 81, 81);
  text-align: center;
  line-height: 0.7;
  animation: fadeIn 3s forwards;
  animation-delay: 1s;
}

@keyframes portfolio {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 640px) {
  #logo img {
    width: 50px;
  }

  #portfolio {
    font-family: "Ballet", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    opacity: 0;
    font-style: normal;
    font-size: 200px;
    color: rgb(81, 81, 81);
    text-align: center;
    line-height: 0.7;
    animation: fadeIn 3s forwards;
    animation-delay: 1s;
  }

  main {
    margin-top: 60px;
  }
}
