* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    background-color: #020617;
    color: #f1f5f9;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6rem;
    background-image: linear-gradient(-20deg, #b721ff 0%, #21d4fd 100%);
}

h1 {
    font-family: "Jost", sans-serif;
    font-size: 2.5rem;
    color: #FFF;
}

main {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.logo {
    width: 70vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 3rem;
}

.left,
.right {
    height: 25rem;
    width: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.left-logo {
    width: 12rem;
    transition: 0.3s;
}

.left-logo:hover {
    scale: 1.1;
}

.middle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7.5rem;
    width: 7.5rem;
    flex-direction: column;
}

.middle-logo {
    width: 7rem;
    padding-right: 1rem;
    transition: filter 0.3s ease;
}

.rotate-left {
    animation: rotateLeft 10s infinite linear;
}

.rotate-right {
    animation: rotateRight 10s infinite linear;
}

@keyframes rotateLeft {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateRight {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.right-logo {
    width: 20rem;
    transition: 0.3s;
}

.right-logo:hover {
    scale: 1.1;
}

p {
    padding-top: 2rem;
    font-family: "Clash Display";
    font-weight: 500;
    font-size: 1.7rem;
    color: #e2e8f0;
}

button {
    height: 3rem;
    margin-top: 2rem;
    display: inline-block;
    background-color: #e11d48;
    border: none;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.5), 0 6px 6px rgba(225, 29, 72, 0.5), 0 0 100px -10px #e11d48;
    transition: 0.3s;
    outline: none;
    margin-right: 1rem;
}

button:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 3px 3px rgba(225, 29, 72, 0.5), 0 3px 3px rgba(225, 29, 72, 0.5), 0 0 100px -10px #e11d48;
}

button span {
    padding: 0.5em 1em;
    color: #f1f5f9;
    font-family: General Sans;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

.invert {
    filter: invert(100%);
}

#rpm {
    margin-right: 1rem;
    font-family: "Jost", sans-serif;
    color: #f8fafc;
}

footer {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
    margin-top: 1rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

footer a {
    font-size: 1rem;
    font-family: "Source Code Pro", arial;
    font-weight: 400;
    color: #94a3b8;
    text-decoration: none;
}