/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --coral: #dd393a;
    --coral-light: #ff6b6b;
    --purple: #4c3594;
    --purple-light: #6f5bb8;
}

@font-face {
    font-family: 'Neometric';
    src: url('fonts/Neometric-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Set default font styles */
body {
    height: 200vh;
    width: 100vw;
    font-family: 'Neometric', Helvetica, Arial, sans-serif;
    text-transform: lowercase;
    line-height: 1.6;
    color: var(--coral);
    background-color: #000;
    background-image: url('images/background.png');
    background-size: 100% 150%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-position-y: 0vh;
}

h2 {
    font-size: 4em;
    font-weight: bold;
}

img#logo {
    position: fixed;
    top: 30vh;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    margin: 0 auto;
    width: 80vw;
    height: auto;
}

section#links {
    position: fixed;
    top: 150vh;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    gap: 20px;
}

section#links img {
    width: auto;
    height: 80px;
    display:none;
}

section#EP {
    position: fixed;
    bottom: 2vh;
    left: 100vw;
    color: var(--coral);
    width: 100%;
    text-align: center;
}

section#EP h2 {

    line-height: 1.2;
    text-shadow:
            -.071em -.071em .03em #000,
            .071em -.071em .03em #000,
            -.071em .071em .03em #000,
            .071em .071em .03em #000,
            0em .1em .03em #000,
            0em -.1em .03em #000,
            -.1em 0em .03em #000,
            .1em 0em .03em #000,
            0 0 .4em var(--coral),
            0 0 .3em var(--purple),
            0 0 .3em var(--purple);
        }