@font-face {
    font-family: 'sequence';
    src: url('Sequence Light.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'icons';
    src: url('Social Media Circled.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

.logo {
    font-family: sequence, arial;
    display: flex;
}

footer .logo {
    font-size: 30px;
}

.logo.big {
    font-size: 64px;

    margin-top: 33vh;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.logo-r,
.logo-l {
    transform-origin: 50% 58%;
    animation: spin 10s infinite ease-in-out;
}

.logo-l {
    animation-direction: reverse;
}

body.default {
    --bg-color: #FFF;
    --primary-color: #3c3752;
    --link-color: #3c3752;
}

@media (prefers-color-scheme: dark) {
    body.default {
        --bg-color: #201d2c;
        --primary-color: #FFF;
        --link-color: #FFF;
    }
}


.skip-to-main-content-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background-color: black;
    color: white;
    opacity: 0;
}

.skip-to-main-content-link a,
.skip-to-main-content-link a:visited {
    color: white;
}

.skip-to-main-content-link:focus {
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
}


body.pink {
    --bg-color: #000;
    --primary-color: #a580ff;
    --link-color: #9296a1;
}

body.blue {
    --bg-color: #091929;
    --primary-color: #9296a1;
    --link-color: #00a3d6;
}

body.noiton {
    --bg-color: #fff;
    --primary-color: #191918;
    --link-color: #097fe8;
    font-family: sans-serif;
}

body.noiton h1 {
    font-size: 76px;
}

body.looop {
    font-family: helvetica;
}

body.moss {
    font-family: 'Courier New', Courier, monospace;
}

.moss #photo {
    float: right;
    border: 5px solid var(--link-color);
    margin: 10px;
    overflow: hidden;
    width: 320px;
}

html {
    min-height: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--primary-color);
    font-size: 17px;
}



main {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    margin: auto;
    margin-bottom: 70px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: baseline;
    max-width: 700px;
    margin: auto;
    padding-bottom: 100px;
    border-top: 1px solid var(--primary-color);
}

footer .copyright {
    margin-inline: 10px;
    letter-spacing: 8px;
    font-size: 12px;
}

.looop #photo {
    float: right;
    border-radius: 100%;
    overflow: hidden;
    width: 320px;
}

#announcement {
    text-align: right;
    letter-spacing: 8px;
    font-size: 12px;
    text-transform: uppercase;
    color: #767575;
}

#contact-bar {
    bottom: 10px;
    position: fixed;
    width: calc(100% - 16px);
    max-width: 700px;
    display: flex;
    justify-content: space-around;
    z-index: 999;
}

#links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border: 2px solid var(--primary-color);
    border-radius: 60px;
    padding: 4px 0 0 5px;
    width: fit-content;
    background-color: var(--bg-color);
    background-color: var(--link-color);
    font-family: icons;
    font-size: 50px;
    box-shadow: 0 0 1px 1px var(--bg-color);
}

#links div {
    transform: scale(0.8, 0.8);
    transition: transform 0.1s ease-in;
    width: 60px;
    height: 60px;
    overflow: hidden;
    padding: 0;
}

#links div:hover {
    transform: scale(1, 1);
}

a,
a:visited {
    color: var(--link-color);
    text-decoration: underline;
    font-weight: bold;
}

a:hover {
    color: var(--link-color);
    text-decoration: none;
}

#links a,
#links a:hover,
#links a:visited {
    color: var(--bg-color);
    text-decoration: none;
    font-weight: normal;

}

.speech {
    font-size: 0px;
}

@media screen and (min-width: 768px) {
    main {
        display: block;
    }
}


body {
    margin: 0;
}


#landing {
    padding: 0;
    background-color: #000;
}


#landing nav {
    align-items: baseline;
    background-color: #ffffffc0;
    border: 1px solid white;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    margin-left: calc(50% - 350px);
    padding: 10px 20px;
    position: fixed;
    top: 20px;
    width: 700px;
}

#landing nav a {
    text-decoration: none;
}

#landing nav a:hover {
    text-decoration: underline;
    color: #097fe8;
}


#features {
    background: radial-gradient(circle, rgba(187, 89, 190, 1) 0%, rgba(191, 72, 165, 1) 61%, rgba(255, 162, 211, 1) 100%);
    height: 800px;
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20%;
    text-align: center;
}


#landing footer {
    background-color: #091929;
    border-top-right-radius: 60px;
    border-top-left-radius: 60px;
    width: 100%;
    max-width: 100%;
    display: block;
    padding-bottom: 0;
}


#landing footer #footer {
    background-color: #000;
    padding: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}