@import url('https://fonts.googleapis.com/css2?family=Shantell+Sans:wght@400;500;700&display=swap');

:root {
    --text: #000000;
    --background: #0b0404;
    --primary: #b51820;
    --secondary: #7a462c;
    --accent: #c07f52;
}

body {
    background-color: var(--background);
    font-family: "Shantell Sans", sans-serif;

    background-color: #fffef6;
    background-image: radial-gradient(#00000038 1px, transparent 0);
    background-size: 35px 35px;


    color: var(--text);
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

header h3 {
    margin: 0;
}

header .links {
    display: flex;
    gap: 20px;
}

a {
    transition-duration: 450ms;
}

a:hover {
    transform: rotateY(360deg) scale(1.3);
}

header {
    position: sticky;
    top: 0;

    display: flex;
    justify-content: space-between;
    padding: 15px;

    background-color: rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);

    z-index: 100;
}

.content {
    max-width: 768px;
    margin: auto;
    margin-top: 100px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bottom {
    position: absolute;
    bottom: 8px;
}

/* story */

.step {
    display: flex;
    align-items: center;
    gap: 50px;
}

.step img {
    border-radius: 10px;
    max-height: 300px;
    max-width: 100%;
}

.overlay {
    padding: 7.5px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);

    font-size: 20px;
    font-weight: bold;
}

/* embeds */

.embeds {
    position: relative;
    display: flex;
    justify-content: center;
    width: calc(100vw - 100px);

    margin: 150px 0;
}

/* footer */

footer {
    margin-top: 150px;
    width: calc(100% - 30px);

    display: flex;
    justify-content: center;
    padding: 15px;

    background-color: rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);

    display: flex;
    gap: 20px;
    justify-content: space-between;
}

footer h3 {
    margin: 0;
}

footer .socials {
    display: flex;
    gap: 20px;
}