@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  box-sizing: border-box;
  font-family: Montserrat;
}

body {
  display: flex;
  align-items: start;
  justify-content: center;
  height: 100vh;
  flex-direction: column;
  background-image: url("bg.png");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.navbar a {
  text-decoration: none;
}
.navbar .logo {
  position: relative;
  align-items: center;
  display: flex;
  flex-direction: row;
  border: 2px solid orange;
  background-color: rgb(255, 255, 255);
  border-radius: 2rem;
  color: #000;
  padding: 7px;
  margin: 2rem;
  transition: 0.5s;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1),
    0 1px 3px rgba(255, 255, 255, 0.08);
}
.navbar .logo:hover {
  box-shadow: 0 8px 12px rgba(255, 255, 255, 0.2),
    0 4px 6px rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}
.logo .logo-tag {
  position: relative;
  display: flex;
  padding: 15px;
  flex-direction: column;
}

.navbar ul {
  position: relative;
  display: flex;
  flex-direction: row;
}

.navbar ul li {
  list-style: none;
  margin: 1rem;
  transition: 0.5s;
}
.buttons button:hover {
  box-shadow: 0 8px 12px rgba(255, 255, 255, 0.2),
    0 4px 6px rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: 10rem;
}
.container h1 {
  padding: 0.5em 0;
  font-size: 5rem;
  color: #fff;
  font-weight: 900;
}
h2 {
  color: #fff;
}
.container p {
  color: #f4f6ff;
  padding: 0.5em 0;
}
.get-started {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  text-decoration: none;
}

.get-started a button {
  margin: 0.5rem;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  width: 250px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  cursor: pointer;
  background-size: 200% 200%;
  background-position: center;
  transition: background-position 0.5s ease-in-out,
    background-size 0.5s ease-in-out;
}

.get-started a button:hover {
  background-image: linear-gradient(45deg, #ff9a44, #ff416c);
}

.animated-button {
  position: relative;
  margin: 1rem;
  display: flex;
  width: 35%;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 16px;
  font-weight: 600;
  color: orange;
  box-shadow: 0 0 0 2px orange;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: orange;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: orange;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  margin: auto;
  font-size: 1.5rem;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #212121;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px skyblue;
}

.animated-button:hover .circle {
  width: 150%;
  height: 150%;
  opacity: 1;
}

.buttons button a {
  text-decoration: none;
  color: #fff;
  color: #000;
}
.buttons button {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1),
    0 1px 3px rgba(255, 255, 255, 0.08);
  width: 5rem;
  padding: 0.5em 0;
  margin: 0 0.5em;
  border-radius: 5em;
  outline: none;
  border: 2px solid orange;
  cursor: pointer;
  transition: 0.5s;
}
