* {
    margin: 0;
    padding: 0;
}

div#banner {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ffb733;
    width: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #1e1e2e;
}

div#main-content {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    padding-top: 70px;
    text-align: center;
    font-size: 500%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    color: #ffffff;
}

.typing-container {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    white-space: nowrap;
    width: fit-content;
    margin: 0 auto;
    padding: 10px;
}
.typing-text {
    font-weight: bold;
    letter-spacing: 1px;
    color: #1e1e2e;
}
.cursor {
    font-weight: bold;
    font-size: 1.5rem;
    margin-left: 2px;
    animation: blink 0.6s step-end infinite;
}
@keyframes blink {
    50% {
        opacity: 0;
    }
}
