*,
*::after,
*::before {
	box-sizing: border-box;
}
:root {
    --font-family: "Kanit", sans-serif;
}
body {
	margin: 0;
    padding: 0;
	font-family: var(--font-family);
    background-color: #0E1B31;
}
a {
	text-decoration: none;
}
ul {
    list-style: none;
}
.heading-first {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 64px;
    line-height: 70%;
    text-align: center;
    color: #fcf3ff;
    margin: 0;
    margin-bottom: 5px;
    margin-top: 50px;
}
.heading-second {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 128px;
    line-height: 78%;
    text-align: center;
    color: #14f195;
    margin: 0;
    margin-bottom: 5px;
}
.heading-second:hover {
    color: #9945ff;
}
.heading-third{
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 64px;
    line-height: 78%;
    text-align: center;
    color: #fcf3ff;
    margin: 0;
}
span {
    color: #14f195;
}
span:hover {
    color: #9945ff;
}
.buttons {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.primary-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #9945ff;
    width: 250px;
    height: 80px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 32px;
    line-height: 78%;
    text-align: center;
    color: #fcf3ff;
    padding: 0;
    margin-right: 35px;
}
.primary-button:hover {
    background: #14f195;
}
.secondary-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 3px solid #fcf3ff;
    width: 250px;
    height: 80px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 32px;
    line-height: 78%;
    text-align: center;
    color: #fcf3ff;
    padding: 0;
    margin-left: 35px;
}
.secondary-button:hover {
    border: 3px solid #14f195;
    color: #14f195;
}
.vote-container {
    border-radius: 12px;
    width: 800px;
    height: 60px;
    background: #fcf3ff;
    display: flex;
    margin-top: 50px;
    margin-left: 360px;
    margin-right: 360px;
}
.vote-container:hover {
    border: 3px solid #14f195;
}
.vote-address {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 71%;
    color: #0e1b31;
    margin: 0;
    margin-left: 25px;
    margin-top: 22px;
    margin-bottom: 22px;
}
.copy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 2px solid #9945ff;
    width: 84px;
    height: 30px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 67%;
    color: #9945ff;
    text-align: center;
    padding: 0;
    margin-left: 70px;
    margin-right: 25px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.copy-button:hover {
    color: #14f195;
    border: 2px solid #14f195;
}
.socials-container {
    border-radius: 12px;
    width: 700px;
    height: 50px;
    background: #fcf3ff;
    margin-left: 410px;
    margin-right: 410px;
    margin-top: 70px;
    margin-bottom: 60px;
}
.socials-container:hover {
    border: 3px solid #14f195;
}
.socials-list {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    padding-left: 89px;
    padding-right: 89px;
}
.socials-list:hover > :not(:hover) {
    opacity: 0.3;
}
.socials__list-item {
    border: 2px solid #9945ff;
    border-radius: 12px;
    width: 70px;
    height: 70px;
    background: #fcf3ff;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.5s ease;
    cursor: pointer;
}
.socials__list-item:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
  .heading-first {
    font-size: 32px;
    margin-top: 60px;
    line-height: 90%;
  }

  .heading-second {
    font-size: 48px;
  }

  .heading-third {
    font-size: 28px;
    line-height: 90%;
    padding: 0 10px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
  }

  .primary-button,
  .secondary-button {
    width: 90%;
    height: 60px;
    font-size: 24px;
    padding: 18px 0;
    margin: 0;
  }

  .vote-container {
    width: 90%;
    height: auto;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin: 30px auto 0;
  }

  .vote-address {
    font-size: 14px;
    margin: 10px 0;
    text-align: center;
  }

  .copy-button {
    width: auto;
    height: auto;
    font-size: 16px;
    padding: 8px 12px;
    margin: 10px 0;
  }

  .socials-container {
    width: 90%;
    height: auto;
    margin: 40px auto;
  }

  .socials-list {
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px;
    gap: 10px;
  }

  .socials__list-item {
    width: 50px;
    height: 50px;
  }
}
