* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-weight: 400;
    box-sizing: border-box;
    color:#fff;
}

p {
  color: #fff;
}

:root {
  --primary-color: #00cc8f;
  --secondary-color: #00c6d8;
}

.centered {
  text-align: center;
  position: absolute;
	left: 50%;
	top: 50%;
  border-width:25px;
  border-radius:25px;
  padding: 25px;
  transform:
              translate(-50%, -50%);
}

.container {
  transition: all .4s;
  backdrop-filter: blur(10px);
  border-radius: 5px;
  outline: 2px solid var(--secondary-color);
  opacity: 1;
}

.justified {
  height: auto;
  justify-content:center;
  display: flex;
  align-items: center;
}

body {
  background-image: url("/images/bg.png");
  background-size: cover;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
}

h1, h2, h3 {
  color:#fff;
}

button {
  outline: 1px solid var(--secondary-color);
  border: none;
  padding: 2px;
  border-radius: 5px;
  color: #fff;
  background: none;
  cursor: pointer;
}

#greeting {
    display: flex;
    width: 500px;
    height: 150px;
}

#tabBar {
  backdrop-filter: blur(10px);
  width: 100%;
  justify-content:space-between !important;
}

#windowContainer {
  display: flex;
  height: calc(100% - 10px);
}

#windowTab {
  transition: all .4s;
  margin: 5px;
  display: block;
  width: 100%;
  height: calc(100% - 23px);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  outline: 2px solid var(--primary-color);
}

.frame {
  width: 100%;
  height: calc(100% - 25px);
  border: none;
  border-radius: 5px;
}

@keyframes slideIn {
  0% {
    transform: scale(.5) perspective(300px) rotateY(-20deg);
    opacity: 0;
    width: 0%;
  }

  70% {
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
    width: 100;
  }
}

@keyframes sizeIn {
  0% {
    transform: scale(.5);
    opacity: 0;
  }

  70% {
    opacity: 0;
  }

  100% {
    left: 0%;
	  top: 0%;
    transform: scale(1);
    opacity: 1;
    width: 100%;
  }
}

@keyframes sizeOut {
  0% {
    transform: scale(1) translate(-50%, -50%);
    opacity: 1;
  }

  70% {
    transform: scale(.95) translate(-53%, -53%);
    height: calc(100% - 40px);
    margin-top: 12px;
    width: calc(100% - 10px);
    opacity: 1;
  }

  100% {
    height: calc(100% - 10px);
    width: calc(100% - 10px);
    height: calc(100% - 40px);
    transform: scale(1) translate(-50%, -50%);
    opacity: 0;
  }
}


#info {
  display: flex;
  justify-self: flex-end;
  align-items: flex-end;
  align-self: flex-end;
}

#omnibox {
  outline: 1px solid var(--secondary-color);
  border-radius: 5px;
}

#urlBox {
  color: #fff;
  outline: none;
  background: none;
  border: none;
  width: 40vw;
}

.windowHeader {
  justify-content:space-between !important;
  height:25px
}

.infoHolder {
  display: flex;
  height:25px
}

#icon {
  height: 23px;
}

a {
  font-weight: 600;
  text-decoration: none;
  transition: .4s all;
  color: var(--primary-color);
}

a:hover {
  font-weight: 700;
  text-decoration: underline;
}

#closeButton {
  display: flex;
  justify-self: flex-end;
  align-items: flex-end;
  align-self: flex-end;
}

select {
  background: none;
  color: #fff;
  outline: 1px solid var(--primary-color);
  border-radius: 5px;
}