* {
    padding: 0;
    margin: 0;
}

html {
    background-color: black;
}

#body-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#title {
    color: orange;
    font-size: 20px;
}

#game-container {
    background-image: url("./img/computer-bg.png");
    width: 600px;
    height: 600px;
}

#bottom-buttons {
    display: flex;
    color: white;
}

#file-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr); 
}

#file-container button {
    background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

#modal-window {
    margin: 0 auto;
    padding: 20px;
    border: none;
}

#modal-window button {
    background: none;
	color: white;
	border: none;
	padding: 5px;
    margin: 1px;
    margin-top: 5px;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

#dev-mode {
    color: white;
}

#shop-container {
    position: relative;
    margin-top: 10px;
    height: 600px;
    width: 600px;
    background-image: url("./img/store_bg.png");
}

#shop-container p {
    background-color: green;
    color: white;
}

#shop-item-container, 
#shop-upgrade-container {
    margin-top:60px;
    height: 140px;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr); 
}

.shop-item,
.upgrade-item {
    background-color:rgba(0, 0, 0, 0.541);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    width: 60px;

    border: none;
    cursor: pointer;
}

#talking {
    display: none;

    position: absolute;

    width: 300px;
    height: 100px;

    bottom: 100px;
    padding: 20px;
    font-size: 20px;
    box-sizing: border-box;

    font-family: 'Brush Script MT', cursive;
}

#talking-text {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 220px;
    height: 70px;

}

#talking img {
    position: absolute;
}

#shop-guy {
    position: absolute;
    right: 20px;
    top: 435px;
    cursor: pointer;
}

.shop-item img {
    width: 50px;
    
}

.tooltip {
    color: black;
    position: relative;
    visibility: hidden;
    padding: 10px;
    box-sizing: border-box;
    background-color: white;
    font-size: 12px;
}

.shop-item:hover .tooltip {
    visibility: visible;
}

.new-file:hover .tooltip {
    visibility: visible;
}

#boat-container {
    background-image: url("./img/ship-bg.png");
    height: 600px;
    width: 600px;
    margin-top: 10px;
}

