/*  primary color #5ce1e6 */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');

body {
  font-family: 'Fredoka', Courier, monospace;
  font-weight: 500;
  text-align: center;
  background-image: url("https://nullclock.github.io/KelpOS/assets/images/wp.png");
  background-size: cover;
  overflow-x: hidden;
  overflow-y: hidden;
}

div.window {
  border: solid;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  position: absolute;
  top: calc(50% - 90px);
  left: calc(50% - 180px);
  backdrop-filter: blur(4px);
  background-color: hsla(0, 0.00%, 0.00%, 0.13);
}

div.body {
  background-color: #fff;
  margin: 6px;
  border-radius: 12px;
  width: fit-content;
  padding: 16px;
}

div.windowhead {
  width: 100%;
  display: flex;
  cursor: move;
  margin-top: 8px;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}

p.title {
  margin: 0;
  color: #fff;
  font-weight: 500;
  flex: 1;
  text-align: center;
}

button.windowclose {
  background-color: rgb(0, 0, 0, 0.25);
  border: none;
  color: white;
  margin-left: auto;
  margin-right: 10px;
}

button.windowclose:hover {
  background-color: red;
}

span.tablet {
  background-color: rgb(0, 0, 0, 0.25);
  padding: 4px 11px 4px 11px;
  color: white;
  border-radius: 20px;
  margin: 10px;
}

button.start {
  font-family: 'Fredoka', Arial, Helvetica, sans-serif;
  font-weight: 500;
  background-color: rgb(0, 0, 0, 0.25);
  border-radius: 20px;
  font-size: 20px;
  border: none;
  color: white;
  padding: 0 11px 0 11px;
  margin: 10px;
}

div.nav {
  position: absolute;
  backdrop-filter: blur(18px);
  background-color: rgb(0, 0, 0, 0.25);
  width: 100%;
  color: white;
  display: flex;
  justify-content: space-between;
  top: 0;
  left: 0;
}

div.window#welcome {
  border: solid;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  position: absolute;
  top: calc(50% - 90px);
  left: calc(50% - 180px);
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.125);
}

span.head {
  margin-top: 5px;
  font-size: 50px;
}

img.logo {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-top: 10px;
  margin-bottom: 0%;
}
