
html {
    background-image: url(https://flyingredbird.neocities.org/backgrounds/homerworkstation.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    justify-content: center;
    display: flex;
    box-sizing: border-box;
}

body {
    display: flex; 
    gap: 20px;     
    position: absolute;

}

main {
    display: flex;
    justify-content: center;
    order: 2;
}

#left-img {
    order: 1;
    position: relative;
    left: -100px;
    top: 90px;
    z-index: 99;
}

#right-img {
    order: 3;
    z-index: 98;
    position: relative;
    right: 80px;
    float: right;
    margin-top: auto;
}
    



aside {
    width: 250px;  
}



.sector7g {
    background-color: #9cff8a;
    opacity: 90%;
    width: 100%;
    height: auto;
    margin: 20px;
    padding: 20px;
    box-shadow: 0 0 10px 10px #35FF0F;
    border: 7px solid pink;
    border-image: repeating-linear-gradient(
        -55deg,
        #000,
        #000 20px,
        #f7e44d 20px,
        #f7e44d 40px
    ) 10;

}