* {
    position: relative;
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-size: 22px;
    font-weight: 400;
    font-family: "Coda";
}

.content {
    height: fit-content;
    width: 100%;
    max-width: 1440px;
}

button {
    cursor: pointer;
    border-radius: 3px;
    padding: 12px 30px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;

    span {
        font-size: 20px;
        text-transform: uppercase;
    }

    svg {
        width: 24px;
        height: 24px;
    }

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 12px rgba(255, 150, 0, 0.25);
}

.button-primary {
    border: solid 1px #00eaff;
    background: #00eaffe8;
}

.button-primary:hover {
    border: solid 1px #ff9600;
    background: #ff9600;
}

.button-secondary {
    border: solid 1px #00eaff;
    background: none;
    color:  #00eaff
}

.button-secondary:hover {
    border: solid 1px #ff9600;
    color: #ff9600;
}

