body {
    font-family: "Roboto Mono", monospace;
    margin: 0;
    background-color: #000;
    color: #F5F5F5;
    line-height: 1.8;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

section {
    background: #111111;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
}

.getsendy {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* centers horizontally */
    justify-content: center;
    text-align: center;
    /* makes sure text inside is centered */
    margin-top: 40px;
}



.name {
    color: #FFFFFF;
    font-size: 58px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    margin: 60px 0 20px;
    margin-bottom: 20px;
    /* add spacing before icons */
    transition: text-shadow 0.5s ease-in-out;
}

.name:hover {
    text-shadow: 0 0 8px #1E90FF,
        0 0 16px #1E90FF;
}

.contact-list {
    list-style: none;
    display: flex;
    gap: 24px;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #2E2E2E;
}

.contact-list li a {
    font-size: 14px;
    color: #F5F5F5;
    transition: color 0.3s ease;
}

.contact-list li a:hover {
    color: #1E90FF;
}


h2 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: lowercase;
    border-bottom: 1px solid #2E2E2E;
    padding-bottom: 8px;
    margin-top: 10px;
    color: #FFFFFF;
    text-shadow: 0 0 5px #1E90FF, 0 0 10px rgba(30, 144, 255, 0.5);
}

h2::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #1E90FF;
    border-radius: 2px;
}

p {
    margin-top: 20px;
    color: #E0E0E0;
    font-size: 18px;
    line-height: 1.8;
}


footer {
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
}

footer a {
    color: #1E90FF;
    text-decoration: none;
}

footer a:hover {
    color: #B0B0B0;
}

footer p {
    color: #555;
    margin-top: 8px;
    font-size: 8px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.name,
h2,
p {
    animation: fadeUp 0.8s ease forwards;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.background span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 89, 255, 0.648);
    border-radius: 50%;
    animation: drift 15s linear infinite;
}

.background span:nth-child(1) {
    top: 20%;
    left: 15%;
    width: 4px;
    height: 4px;
    animation-duration: 12s;
}

.background span:nth-child(2) {
    top: 50%;
    left: 40%;
    animation-duration: 18s;
}

.background span:nth-child(3) {
    top: 70%;
    left: 70%;
    animation-duration: 22s;
}

.background span:nth-child(4) {
    top: 10%;
    left: 60%;
    animation-duration: 14s;
}

.background span:nth-child(5) {
    top: 30%;
    left: 80%;
    animation-duration: 20s;
}

.background span:nth-child(6) {
    top: 80%;
    left: 25%;
    animation-duration: 16s;
}

.background span:nth-child(7) {
    top: 60%;
    left: 10%;
    animation-duration: 19s;
}

.background span:nth-child(8) {
    top: 40%;
    left: 90%;
    animation-duration: 21s;
}

.background span:nth-child(9) {
    top: 75%;
    left: 55%;
    animation-duration: 13s;
}

.background span:nth-child(10) {
    top: 15%;
    left: 35%;
    animation-duration: 17s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    25% {
        transform: translate(-30px, 20px);
        opacity: 1;
    }

    50% {
        transform: translate(40px, -25px);
    }

    75% {
        transform: translate(-20px, -40px);
        opacity: 0.8;
    }

    100% {
        transform: translate(0, 0);
        opacity: 0;
    }
}