body {
    background-color: #000000;
}
    
#container {
    display: flex;
    flex-direction: row;
    padding: 100px;
    width: auto;
    height: auto;
    gap: 40px;
}

#boxes {
    display: flex;
    order: 2;
    flex-wrap: wrap;
    height: 400px;
    width: 400px;
    gap: 20px;
    object-fit: contain;
    
}


.text-box {
    background-color: #000000;
    border: 10px solid #ebebeb;
    border-style: inset;
    box-shadow: 0px 0px 15px -2px #ffffff;
    object-fit: contain;
}

 .text {
    color: #ffffff;
    font-family: "Source Code Pro", monospace;
    font-size: 16px;
    margin: 10px;
}

#game-boy {
    border: 1px solid #ffffff;
    width: 250px;
    height: 400px;
    order: 1;
    background-color: #000000;
    border-radius: 3px;
    box-shadow: 0px 0px 15px -2px #ffffff;
}

#d-pad {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 25px;
}

#screen {
    border: 1px solid #ffffff;
    width: 220px;
    height: 150px;
    margin: 15px;
    border-radius: 3px;
}

.triangle {
    width: 40px;
    height: 40px;
}

#down {
    transform: rotate(180deg);
}

#horizontal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#vertical {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#right {
    transform: rotate(90deg);
}

#left {
    transform: rotate(270deg);
}

#center {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 2px;
}

#earth {
    display: flex;
    order: 3;
}

embed {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
    display: block;
}