@font-face {
    font-family: cinzel;
    src: url(Cinzel-Regular.woff2);
}

body {
    background-color: black;
    height: 100vh;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

p,
h1,
h3 {
    color: rgb(158, 123, 234);
    text-align: center;
    font-family: cinzel;
    letter-spacing: 3px;
}

h1 {
    letter-spacing: 5px;
    text-transform: uppercase;
}

footer {
    margin-top: 40px;
}

.primary_color {
    filter: invert(52%) sepia(50%) saturate(819%) hue-rotate(213deg) brightness(98%) contrast(87%);
}

.logo {
    width: 50%;
    height: auto;
}

@media (max-width: 768px) {
    .logo {
        width: 100%;
    }
}

