.content {
    width: 100vw;
    height: 100vh;
    position: fixed;
    margin: 0 0 0 0
}

body {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}

.title-text {
    font-family: 'Copperplate', fantasy, sans-serif;
    text-align: center;
    width: 100%;
    font-size: 7.5vw;
    color: white;
    text-shadow:
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        -3px 0px 0 #000,
        3px 0px 0 #000,
        0px -3px 0 #000,
        0px 3px 0 #000;
}

#title-container {
    text-align: center;
    height: fit-content;
    width: 100%;

}

#socials-container {
    text-align: center;
    height: fit-content;
    width: 100%;

}

.title {
    padding: 1vh 1vw 1vh 1vw;
    margin: 5vh 5vw 5vh 5vw;
    max-width: 90vw;
}

.instagram-logo {
    max-width: 15vw;
    height: auto;
}

#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Pushes it behind your content */
    background: radial-gradient(circle at bottom, #1B2735 0%, #090A0F 100%);
}