.window {
	width: 400px;
	height: 250px;
    
	font-weight: 400;
	letter-spacing: .025em; 
    
	background-color: #c6c6c6;
    
	border-top: 2px solid #efefef;
	border-left: 2px solid #efefef;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;

    margin-left: auto;
    margin-right: auto;

}

.window a {
    text-decoration: none;
}

.window > button {
    border-top: 2px solid #efefef;
    border-left: 2px solid #efefef;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
}

.window  img {
    height: max-content;
    width: 40%;
    border: none;
    box-shadow: none;
}

.window-content {
	overflow: hidden;
	overflow-y: hidden;

	background: #ffffff;
	border: silver 5px solid;
	border-bottom: silver 2px solid;
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
	color: #696969;
	height: 86%;

}

.window-content p {
    margin: 0;
    margin-top: 5px;
    font-size: 24px;
}


.window-top {
	text-align: right;
	height: 10%;
	display: flex;
	justify-content: space-between;
	align-items: center;

	background-image: linear-gradient(to right, #031e92, #0f7fcd);
}

.window-top-no-bind {
	cursor: inherit;
}

.menuButton {
    height: 16px;
    width: 16px;
    margin: 0;
    padding: 0;
    text-align: center; 
    cursor: pointer;
    background-color: silver;
    font-size: 12px;
    line-height: 16px;  
    display: flex;  
    justify-content: center;  
    align-items: center; 
    
    border-top: #efefef 2px solid;
    border-right: #000 2px solid;
    border-bottom: #000 2px solid;
    border-left: #efefef 2px solid;
}

.minimise {
    padding-bottom: 5px;
}
.fullscreen {
    padding-bottom: 2.5px;
}
.close {
    padding-bottom: 2.5px;
    padding-right: 1px;
    margin-right: 5px;
    margin-left: 5px;
}

.windowTitle {
	display: inline-flex;
	text-align: left;
	padding: 0;
	margin: 0;
	flex-grow: 1;
	padding-left: 5px;
	font-weight: 400;
    color: #efefef;
}
