body {
    background-image: url('assets/images/background.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

#greetingText {
    color: white;
    background-color: rgb(70, 165, 255);
    width: fit-content;
    border-radius: 4px;
    padding: 8px 8px;
    font-size: 24px;
    box-shadow:
        0 0 24px rgba(70, 165, 255, 0.7),
        0 0 24px rgba(70, 165, 255, .7),
        0 0 24px rgba(70, 165, 255, .35),
        0 0 24px rgba(70, 165, 255, 0)
}

#greetingVideo {
    background-color: black;
    height: 30vh;
    max-width: 90%;
    border-radius: 12px;
    box-shadow:
        0 0 24px rgba(0, 0, 0, .7),
        0 0 24px rgba(0, 0, 0, .7),
        0 0 24px rgba(0, 0, 0, .35),
        0 0 24px rgba(0, 0, 0, 0)
}