body {
    background-image: url(images/blocks.png);
    background-repeat:repeat-y;
    background-position: center top;
    background-attachment: fixed;
    background-color: teal;
    font-size: 1em;
    font-family: monospace;
    padding: 10px;
    margin: 10px;
    overflow-x: hidden;
    cursor: url("images/cursor1.png"), auto;
}
a:hover, button:hover {
    cursor: url('images/cursor2.png'), pointer;
}
main {
    display: flex;
    justify-content: center;
    margin: 10px;
}

p{
    font-family: "Roboto Mono", sans-serif;
    font-size: medium;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.h-box {
    border: 2px solid black;
    width: 100%;
    max-width: 920px;
    height: 100px;
    box-sizing: border-box;
    background-color: pink;
    overflow: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.star {
    margin-left: 50px;
}
.computer {
    margin-right: 50px;
    align-self: center;
}
    



.box-group {
    display: flex;
    gap: 10px;
}

.box1 {
    border: solid black 2px;
    width: 200px;
    padding: 10px;
    background-color: #E2DAC6;
    overflow: auto;
}
.box2 {
    border: solid black 2px;
    width: 700px;
    height: 700px;
    padding: 10px;
    background-color: #E2DAC6;
    overflow: auto;
}
.flowers1 {
    position:fixed;
    left: 0px;
    bottom: 0px;
    width: 400px;
}
.flowers2 {
    position:fixed;
    left: 400px;
    bottom: 0px;
    width: 400px;
}
.flowers3 {
    position:fixed;
    left: 800px;
    bottom: 0px;
    width: 400px;
}
.flowers4 {
    position:fixed;
    left: 1200px;
    bottom: 0px;
    width: 400px;
}
.flowers5 {
    position:fixed;
    left: 1600px;
    bottom: 0px;
    width: 400px;
}
.cybersyn {
    position:fixed;
    right: 10px;
    top: 100px;
    width: 440px;
}
.chair {
    position:fixed;
    right: 20px;
    bottom: 0px;
    width: 400px;
}



@media(orientation: portrait) { 
.box-group {
    flex-direction: column;
    align-items: stretch;
}
.box1,
.box2 {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.h-box {
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
    padding: 10px;
}
img {
    max-width: 100%;
    height: auto;
}
.cybersyn {
    visibility: hidden;
}
.chair {
    width: 30%;
}
.computer {
    margin-right: 0;
    margin-top: 10px;
}
} 