body, html {
    background: rgb(20,20,30);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
    color: white;
    font-family: "Geologica";
}
@font-face {
    font-family: "Geologica";
    src: url(../font/Geologica.ttf);
}
@font-face {
    font-family: "Source Code Pro";
    src: url(../font/SourceCodePro.woff);
}
@font-face {
    font-family: "Exo";
    src: url(../font/Exo.woff);
}
a {
    color: inherit;
    text-decoration: underline;
}
.main {
    display: flex;
}
.head {
    margin: 20px;
    width: fit-content;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.1em;
    font-size: 50px;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
    text-align: center;
    font-family: "Exo";
    position: relative;
    z-index: 0;
}
.subhead {
    width: calc(100% - 20px);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.1em;
    font-size: 20px;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
    text-align: center;
    font-family: "Exo";
}
.sectionheader {
    width: 100%;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.1em;
    font-size: 20px;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
    text-align: left;
    font-family: "Exo";
    margin-bottom: 10px;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    width: calc(100% - 40px);
    max-width: 1000px;
}
.card {
    --background: gray;
    flex-basis: calc(50% - 20px);
    background: gray;
    box-shadow: 3px 3px 10px gray;
    aspect-ratio: 3 / 1;
    flex-grow: 1;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-size: 30px;
    transition: 0.3s;
}
.card:hover {
    transform: perspective(1000px) translateZ(50px);
    letter-spacing: 0.15em;
}

.card.reddit { background: linear-gradient(45deg,rgb(255,100,0),rgb(255,180,0));box-shadow: 3px 3px 10px rgb(255,128,0); }
.card.twitter { background: linear-gradient(130deg,rgb(100,180,255),rgb(50,100,255));box-shadow: 3px 3px 10px rgb(100,180,255); }
.card.discord { background: linear-gradient(45deg,#5865F2,#4E5D94);box-shadow: 3px 3px 10px #5865F2; }
.card.youtube { background: linear-gradient(45deg,rgba(255,0,0),rgba(255,100,100));box-shadow: 3px 3px 10px rgba(255,0,0); }

.section {
    padding: 20px;
    margin: 20px;
    width: 100%;
    background: rgba(40,40,50);
    border-radius: 20px;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.3);
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}
.site {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    font-weight: 250;
    font-size: 18px;
    background: rgba(60,60,70);
    border-radius: 10px;
    cursor: pointer;
    color: white;
    text-decoration: none;
    transition: 0.2s;
}
.site:hover:not(.disabled) {
    background: rgba(70,70,80);
}
.site:not(:last-child) {
    margin-bottom: 10px;
}
.site.disabled {
    cursor: not-allowed;
    color: rgba(150,150,150);
    font-style: italic;
    opacity: 50%;
    -webkit-user-select: none;
    user-select: none;
}
.input {
    display: flex;
    padding: 15px;
    font-weight: 250;
    font-size: 18px;
    background: rgba(60,60,70);
    border-radius: 10px;
    cursor: pointer;
    color: white;
    border: none;
    width: calc(100% - 30px);
    transition: 0.5s;
}
.input:hover:not(:disabled) {
    background: rgba(70,70,80);
}
.input:not(:last-child) {
    margin-bottom: 10px;
}
.input::placeholder {
    color: rgba(255,255,255);
    font-style: italic;
    opacity: 50%;
}
.input:focus {
    cursor: text;
    outline: none;
    background: rgba(80,80,90) !important;
}
.input:disabled {
    opacity: 50%;
    cursor: not-allowed;
}
.button {
    padding: 8px 16px;
    font-size: 16px;
    font-family: "Geologica";
    font-weight: 300;
    color: white;
    background: rgba(70,70,80);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
}
.button:hover:not(:disabled) {
    background: rgba(80,80,90);
}
.button:disabled {
    opacity: 50%;
    cursor: not-allowed;
}
.button.formend {
    margin-left: auto;
}
.abt {
    margin: 0;
    font-weight: 275;
    font-size: 16px;
}
.new {
    background: linear-gradient(120deg, dodgerblue, crimson, pink, orange);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: cover;
    font-style: normal;
    transform: skew(-20deg) translateX(0.15em);
    display: inline-flex;
    width: fit-content;
}
.buggy {
    color: red;
    font-style: italic;
}
.footer {
    width: fit-content;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.1em;
    font-size: 15px;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
    text-align: center;
    font-family: "Exo";
    color: white;
    text-decoration: none;
    margin-top: 15px;
}
.socials {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.socials a {
    width: 30px;
    height: 30px;
}
.socials a img {
    width: 30px;
    height: 30px;
    opacity: 0.5;
    object-fit: contain;
    object-position: center;
}
.splash {
    width: 150px;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.1em;
    font-size: 15px;
    text-shadow: 0 0 5px rgba(255,255,0,0.75);
    text-align: center;
    font-family: "Exo";
    color: yellow;
    position: absolute;
    bottom: -20%;
    right: -35%;
    transform: rotate(-20deg);
    animation: bounce 0.5s infinite linear;
    z-index: 1;
}


@media (max-width: 600px) {
    .cards {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .card {
        aspect-ratio: 6 / 1;
    }
    .section {
        margin: 0;
        margin-bottom: 5px;
        width: calc(100% - 40px);
        border-radius: 0;
        box-shadow: none;
    }
    .main {
        flex-direction: column;
        margin-top: 10px;
    }
    .splash {
        color: white;
        text-shadow: 0 0 10px rgba(255,255,255);
        position: initial;
        transform: none;
        width: 100%;
        font-size: 20px;
        animation: none;
    }
}
@keyframes bounce {
    0% {
        transform: rotate(-10deg) scale(1);
    }
    50% {
        transform: rotate(-10deg) scale(0.8);
    }
    100% {
        transform: rotate(-10deg) scale(1);
    }
}