* {
    box-sizing: border-box;
}

img {
    image-rendering: pixelated;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'MSSansClone';
    src: url('ms-sans-serif-1.ttf') format('truetype');
}

body {
	padding: 0;
	margin: 0;
	background-color:#008080;
	line-height: 1;
	font-family: 'MSSansClone', sans-serif;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    height: 100%;
}
header {
	background-color: #1e2533;
	padding: 30px;
	text-align: left;
}

.icon {
    width: 40px;
    margin: 10px;
}

.window-98 {
    border-style: solid;
    border-width: 2px;
    border-color: #404040;
    border-top-color: #EFEFEF;
    border-left-color: #EFEFEF;
    width: 100%;
    height: 100%;
    background-color: #c0c0c0;
}

.window-header {
    display: flex;
    height: 22px;
    width: 100%;
    align-items: center;
    padding-left: 3px;
    color: #EFEFEF;
    font-size: 14px;
    background: linear-gradient(to right, #020B87, #0F83CF)
}

.time {
    padding-right: 4px;
    padding-left: 3px;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: small;
    margin-right: 2px;
    line-height: 18px;
    width: 80px;
    height: 22px;
    border-style: inset;
    color: #606060;
    border-color: #E0E0E0;
    border-width: 2px;
    background-color: #c0c0c0;
}

.start {
    background-color: #c0c0c0;
    border-style: solid;
    border-width: 2px;
    border-color: #404040;
    border-top-color: #EFEFEF;
    border-left-color: #EFEFEF;
    min-width: fit-content;
    padding-right: 4px;
    padding-top: 2px;
    padding-left: 3px;
    display: flex;
    text-align: center;
    align-items: center;
    font-size: small;
    margin-left: 2px;
    line-height: 18px;
    width: fit-content;
    height: 24px;
}

.smile {
    background-color: #c0c0c0;
    border-style: solid;
    border-width: 2px;
    border-color: #EFEFEF;
    border-right-color: #151515;
    border-bottom-color: #151515;
}
.smile:active img {
    content: url('lose.png');
}

.start:hover {
    background-color: #b8b8b8;
}

.start:active {
    padding-left: 4px;
    padding-top: 3px;
    border-left-color:#404040;
    border-top-color: #404040;
    border-bottom-color: #EFEFEF;
    border-right-color: #EFEFEF;
}

.smile:active {
    padding-left: 5px;
    padding-top: 4px;
    border-color:#151515;
    border-bottom-color: #EFEFEF;
    border-right-color: #EFEFEF;
}

.container {
    display: flex;
    flex-grow: 1;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}

.t-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-grow: 1;
    width: 100%;
}

.taskbar {
    background-color: #c0c0c0;
    height: 30px;
    width: 100%;
    border-style: solid;
    border-color: #c0c0c0;
    border-top-color: #efefef;
}

.navi {
	font-size: 28px;
	color:#A65D78;
}
.window {
	border-radius: 15px;
	margin: 5px;
	padding: 20px;
	height: 250px;
	background: #384761;
}
input[type=text] {
	font-family: 'Roboto Mono';
	width: 115px;
	margin-top: 5px;
	padding: 3px;
	border-radius: 5px;
	border: inset;
}
h1 {
	font-size: 50px;
	color:#F27798;
}
h2 {
	font-size: 28px;
	color:#A65D78;
}
div.a {
	font-size: 22px;
	color:#F2F0F0;
	float: left;
}
button {
	float: left;
	margin: 5px;
	font-family: 'Roboto Mono';
}
div {
	float: left;
}
p {
	font-size: 22px;
	color:#F2F0F0;
	float: left;
}

.verta {
    align-items: center;
}

.mimg {
    width: 100%;       /* scales image to fill the div horizontally */
    height: auto;      /* keeps aspect ratio */
    display: block;    /* removes bottom whitespace */
  }

@keyframes close {
    from {
        width: 100%;
        height: 100%;
    }
    to {
        width: 0px;
        height: 0px;
    }
}

/* Add animation keyframes */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.website-text {
	opacity: 0;
	animation: fadeSlideDown 2s ease forwards;
} 
/* Apply animation to .window elements */

a {
  transition: color 0.5s ease;
}

a:hover {
  color:#e48fae;
}