@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap');

.container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 120px;
    margin-top: 10vh;
    margin-bottom: 100vh;
    font-family: Orbitron;
}


.start-button {
    border: none;
    background: none;
    position: relative;
    padding: 16px 30px;
    font-size: 1.5rem;
    color: var(--color);
    text-shadow: 0 0 15px var(--color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: 1.5s;
    z-index: 1;
    --color: white;
    transition: all 1s linear;
}

.start-button:hover {
    color: black;
    box-shadow: 0 0 0px var(--color);
}

.start-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color);
    z-index: -1;
    transform: scale(0);
    transition: 0.5s;
}

.start-button:hover::before {
    transform: scale(1);
    transition-delay: 0.5s;
    box-shadow: 0 0 10px var(--color),
        0 0 30px var(--color),
        0 0 60px var(--color);
}

.start-button span {
    position: absolute;
    background: var(--color);
    pointer-events: none;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--color),
        0 0 20px var(--color),
        0 0 30px var(--color),
        0 0 50px var(--color),
        0 0 100px var(--color);
    transition: 0.5s ease-in-out;
    transition-delay: 0.25s;
}

.start-button:hover span {
    opacity: 0;
    transition-delay: 0s;
}

.start-button span:nth-child(1),
.start-button span:nth-child(3) {
    width: 40px;
    height: 15px;
}

.start-button:hover span:nth-child(1),
.start-button:hover span:nth-child(3) {
    transform: translateX(0);
}

.start-button span:nth-child(2),
.start-button span:nth-child(4) {
    width: 0;
    height: 0;
}

.start-button:hover span:nth-child(1),
.start-button:hover span:nth-child(3) {
    transform: translateY(0);
}

.start-button span:nth-child(1) {
    top: calc(50% - 2px);
    left: -50px;
    transform-origin: left;
}

.start-button:hover span:nth-child(1) {
    left: 50%;
}

.start-button span:nth-child(3) {
    top: calc(50% - 2px);
    right: -50px;
    transform-origin: right;
}

.start-button:hover span:nth-child(3) {
    right: 50%;
}

.start-button span:nth-child(2) {
    left: calc(50% - 2px);
    top: -50px;
    transform-origin: top;
}

.start-button:hover span:nth-child(2) {
    top: 50%;
}

.start-button span:nth-child(4) {
    left: calc(50% - 2px);
    bottom: -50px;
    transform-origin: bottom;
}

.start-button:hover span:nth-child(4) {
    bottom: 50%;
}