html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;

}
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.5;
}
.content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    z-index: 1;
}
#typewriter {
    margin-top: 30px;
    font-family:'Nunito', monospace;
    font-size: 48px;
    white-space: nowrap;
    overflow: hidden;
}
.typed-cursor {
    display: inline-block;
    vertical-align: middle;
    font-family: monospace;
    font-size: 24px;
    opacity: 1;
    animation: blink-caret 0.75s step-end infinite;
}
@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: black; }
}
img {
    max-width: 100%;
    height: auto;
}

footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 1;
}
.social-icons {
    font-size: 24px;
}
.social-icons a {
    margin: 0 10px;
    color: inherit;
    text-decoration: none;
}