nav {
    background: transparent !important;
}

main {
    background: transparent !important;
}

body {
    background-color: #000000;
    background: url(/assets/eat-sleep-code.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

main {
    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: flex-start;

    height: auto;
    padding: 250px var(--content-padding);

    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);

    gap: 15px;
}

main h1 {
    font-size: 50px;
}

main p span,
main h1 span {
    color: var(--accent-light);
}

main p {
    width: 100%;
    max-width: 800px;

    font-size: 18px;
    opacity: 0.8;
}

main p a {
    color: var(--accent-light);
    transition: 0.3s ease-out;
}

main p a:hover {
    color: var(--accent);
}

main .socials {
    display: flex;
    flex-direction: row;

    gap: 15px;
}

main .socials a {
    display: flex;
    flex-direction: row;

    justify-content: center;
    align-items: center;

    font-size: 16px;
    color: #ffffff;
    gap: 5px;

    transition: 0.3s ease-out;
}

main .socials a:hover {
    color: var(--accent);
}

@media (max-width: 580px) {
    main {
        padding-top: 150px;
    }
}
