@font-face {
    font-family: "terminator";
    src: url("./terminator_real_nfi.ttf");
}

@font-face {
    font-family: "jbmono";
    src: url("./jetbrains-mono/JetBrainsMono-Bold.ttf");
}

body {
    font-size: 12pt;
    color: #0160da;
    font-weight: bold;
    font-family: 'jbmono';
}

input, input:active, input:hover, input:focus {
    background: none;
    border: none;
    /* border-bottom: 2px solid white; */
    margin: 2px;
    font-size: 15pt;
    color: white;
    outline: none;
}


canvas {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1000;
    top: 0;
    left: 0;
}

#background-overlay {
    backdrop-filter: blur(2px);
    width: 90vw;
    height: 90vh;
    margin-left: 5vw;
    margin-top: 5vh;
}

#skynet {
    position:fixed;
    z-index: 1500;
    bottom: 2vh;
    right: 2vw;
    background: black;
    padding: 1vh 1vw;
    font-family: 'terminator';
    font-size: 4vh;
    overflow: hidden;
    clip-path: polygon(
        0 20%,
        10% 0,
        100% 0,
        100% 80%,
        90% 100%,
        0% 100%
      );
      border: 10px solid #0160da;
}

.fixed-center {
    position:fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.center {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
}

.box {
    backdrop-filter: blur(2px);
    border-top: 3px solid #0160da;
    border-bottom: 3px solid #0160da;
}

.login {
    padding: 2vw;
}

.search {
    width: 40vw;
    margin-top: 2vh;
    z-index: 200;
}
form.example input {
    font-size: 3vh;
    width: 100%;
}
form.example input[type=text] {
    height: 100%;
    padding: 10px;
}
form.example button {
    float: left;
    background: none;
    padding: 10px;
    color: white;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 3vh;
}
.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
}
.autocomplete-items {
    position: absolute;
    /* border: 1px solid #d4d4d4; */
    border-bottom: none;
    border-top: none;
    z-index: 200;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}
.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: none;
    backdrop-filter: blur(4px);
    /* border-bottom: 1px solid #d4d4d4; */
    border: none;
  }
  .autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
  }
  .autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
  }


#left {
    position:fixed;
    padding: 1vw;
    height: 71vh;
    width: 45vw;
    left: 2.5vw;
    top: 13vh;
}

#right {
    position:fixed;
    padding: 1vw;
    height: 71vh;
    width: 45vw;
    right: 2.5vw;
    top: 13vh;
}

#details {
    position:fixed;
    left: 40vw;
    top: 18vh;
    backdrop-filter: blur(2px);
    padding-top: 2vh;
}
#details img {
    width: 250px;
    float:left;
}
#details div {
    float:right;
    padding-left: 40px;
    padding-top: 10px;
}

.off {
    opacity: 0;
}



.content {
    position: fixed;
    height: auto;
    z-index: 300;
}


/*

login: 
padding: 2vw;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);

search: 
padding: 2vw;
left: 50%;
transform: translateX(-50%);