* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Courier New", Courier, monospace;
    color: white;
}
html {
    scroll-behavior: smooth;
}

.main-header {
    position: fixed;
    top: 0;
    background-color: rgb(176, 23, 23);
    width: 100%;
    padding: 8px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 24px;
}

.main-header h1 {
    font-size: 15px;
    font-weight: 300;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        "Open Sans",
        "Helvetica Neue",
        sans-serif;
}

.basic-button {
    background-color: rgb(103, 0, 0);
    cursor: pointer;
    border-color: rgba(255, 127, 80, 0);
    color: white;
    height: 30px;
    width: 100px;
    transition: all 0.3s ease;
}

.basic-button:hover {
    background-color: rgb(77, 0, 0);
}

.left-section {
    background-color: rgba(117, 0, 0, 0);
    position: fixed;
    left: 0;
    top: 40px;
    width: 250px;
    min-height: 150vh;
    float: left;
}

.left-section li {
    margin: 4px;
    text-align: center;
}

.section-button {
    align-self: center;
    font-size: 15px;
    background-color: transparent;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.section-button:hover {
    color: rgb(255, 48, 48);
}

.left-section h3 {
    text-align: center;
    padding-top: 30px;
}

main {
    margin-left: 250px;
    margin-top: 5px;
    padding: 20px;
}

.image-text-top {
    display: flex;
    align-items: start;
    gap: 20px;
}
.image-text-center {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider {
    overflow: hidden;
    width: 100%;
    background: transparent;
}

.slide-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.slide-track img {
    width: 200px;
    /* change to any size */
    height: auto;
    margin-right: 20px;
    /* space between images */
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.code-block {
    background-color: rgb(25, 25, 25);
    padding: 10px;
}

.main-footer {
    background-color: rgb(176, 23, 23);
    width: 100%;
    padding: 8px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}
