@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap%27');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url('./bg.gif');
  background-size: cover;
  background-position: center;
  font-family: 'Outfit', sans-serif;
}

.container {
  color: white;
  height: 100dvh;
  width: 100%;
  padding: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.introduction {
  font-size: 5rem;
  font-weight: normal;
}

.name {
  font-weight: bolder;
}

.btn {
  border-radius: 50px;
  padding: 8px 16px;
  margin-top: 20px;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 24px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  width: auto;
  color: white;
}

.btn-primary {
  background-color: #237fe8;
  border-color: #237fe8;
}

.btn-primary:hover {
  background-color: #19569c;
  border-color: #19569c;
}

@media screen and (max-width: 768px) {
  .btn {
    width: 100%;
  }
}