* {
    padding: 0;
    margin: 0;
}

html {
    background-color: black;
    color:white;
}

#body-container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

#title {
    color: orange;
}

#game-container {
    width: 600px;
    height: 600px;
    background-image: url(./img/computer-bg.png);
}

#files-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr); 
}

#files-container button {
    background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

#files-container button:hover {
    background-color: rgba(128, 128, 128, 0.388);
}

#files-container button:active {
    background-color: rgba(70, 70, 70, 0.505);
}

.modal-window {
    margin: 0 auto;
    border: none; 
    padding: 10px;
    width: 300px;
    margin-top: 200px;
}

.modal-interior {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.modal-buttons button {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-buttons img {
    width: 32px;
}

.modal-window button {
    color: white;
    padding: 2px;
	
    border: none;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

.modal-window button:hover {
    background-color: black;
}

#close:hover {
    background-color: darkred !important;
}

.backfill {
    width: 100%;
    height: 50%;
}