:root {
  --primary-color: #f7b731;
  --secondary-color: #333333;
  --background-color: #ffffff;
  --text-color: #555555;
  --light-grey: #f4f4f4;
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3 {
  color: var(--secondary-color);
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* main content */

#main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #050505;
  padding: 20px;
  box-sizing: border-box;
  /* height: 90vh; */
}

a {
  text-decoration: none;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
}

.right {
  line-height: 20px;
  flex: 1;
  max-width: 50%;
  padding-right: 50px;
}

.right .greeting {
  font-size: 1.2em;
  /* margin-bottom: 0px; */
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.right .greeting {
  font-size: 1em;
  font-weight: 600;
  color: #ffff;
  letter-spacing: 2px;
}

.right h1 {
  font-size: 3.5em;
  margin: 0;
  line-height: 1.1;
  color: white;
}

.right .entry {
  display: inline-block;
  font-weight: 600;
  padding: 0px 10px;
  font-size: 1.2em;
  margin-bottom: 15px;
  color: var(--text-color);
  background: var(--primary-color);
}

.right .bio {
  font-size: 1.2em;
  margin-top: 20px;
  color: #fafafa;
  font-weight: lighter;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}


.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-color);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: var(--primary-color);
  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: var(--primary-color);
  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;
  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: #fffdfd;
  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: #fffbfb;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px var(--primary-color);
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

.left {
  flex: 1;
  max-width: 45%;
  text-align: right;
  height: auto;
}

.left img {
  width: 100%;
  border-radius: 20px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .right,
  .left {
    max-width: 90%;
    padding-right: 0;
    /* text-align: center; */
  }

  .left {
    margin-top: 30px;
  }

  .right .entry {
    display: block;
  }

  .animated-button {
    font-size: 18px;
    margin: auto;
  }
}
