@font-face {
    font-family: 'CustomFont';
    src: url('fonts/zpix.ttf') format('truetype');
    /* Add additional src declarations for other font formats if desired */
}
body {
    font-family: 'CustomFont', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#desktop {
    position: relative;
    width: 100%;
    height: 100%;
}

.icon {
    position: absolute;
    text-align: center;
    cursor: pointer;
    color: #462DC6;
    text-shadow: 0px 0px 0px black;
}

.icon img {
    width: 64px;
    height: 64px;
}

.window {
    display: none;
    position: absolute;
    width: 350px;
    height: 450px;
    background-color: transparent;
    font-size: smaller;
    z-index: 10;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, width 0.3s ease, height 0.3s ease;
    box-sizing: border-box; /* Include padding/border in element's total width/height */
	background:center center / cover no-repeat url('https://uraincandy.neocities.org/images/sonic.png');
}

.window.show {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.window.hide {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
}


/* Position the icons */
.icon:nth-child(1) {
    top: 100px;
    left: 100px;
}

.icon:nth-child(2) {
    top: 250px;
    left: 100px;
}

.icon:nth-child(3) {
    top: 400px;
    left: 66px;
}

.main-container {
    border: 4px solid;
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    
}

.inner-container {
    border: 4px solid;
    border-radius: 20px;
    text-align: center; /* Center-align the content inside .card */
    height: 225px;
    width: 700px;
}

#window {
    margin-right: 0px;
    padding-right: 100px;
    width: 450px;
    padding: 4px; 
    padding-bottom: 0px;
    font-size: smaller;
}

#internaltopBar {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Align items to the left and right edges */
    height: 26px;
    padding-left: 1px;
    margin-bottom: 4px;
    padding-right: 0px;
    font-weight: bold;
    font-size: 13px;
    color: #462DC6;
    background-color: #e2e2e2;
    border: solid;
    border-color: #462DC6;
    border-width: 2px;
}

#internaltopBar p {
    margin: 0; /* Reset margin to remove extra spacing */
}

#internaltopBar img {
    padding-right: 4px;
}

#internaltopBar #button {
    justify-content: flex-end; /* Align the buttons to the right */
}

#leftContent {
    display: flex;
    align-items: center;
}

#leftButtons {
    display: flex;
    align-items: center;
}

#bottomBarMargin {
    background-color: transparent;
    margin-top: 3px;
    flex-grow: 1;
    overflow-y: auto;
    box-sizing: border-box;
    height: auto; /* Default height */
	padding-left: 20px;
	padding-right: 20px;
}

.box {
    background-color: #ead2ec;
    border: 1px solid #462DC6;
    padding: 10px;
    margin: 0;
}

.rectangle {
    width: 35px;
    height: 8px;
    background: #eb9fe7;
    margin-top: 4px;
    margin-bottom: 0px;
    border: solid;
    border-bottom: none;
    border-color: #462DC6;
    border-width: 2px;
}

.square {
    width: 2px;
    height: 2px;
    margin-top: 4px;
    margin-bottom: 0px;
    margin-left: 1px;
    /*margin-right: 0px;*/
    border: solid;
    border-color: #462DC6;
    border-width: 2px;
}

#bottombottoms {
    display: flex;
    
}