@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;500;700&display=swap');
body{
  margin:0;
  padding: 0;
  overflow: hidden;
  background: black;
  font-family: 'Comfortaa',sans-serif;
}
.background{
  z-index: -1;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top:0;
  left:0;
  background-image: var(--vsd-bg-image);
  background-repeat: no-repeat;
  background-size: cover;
}
.logo{
  background-image: var(--vsd-logo);
  background-repeat: no-repeat;
  background-position: center;
  width: 20vw;
  height: 40px;
  background-size: contain;
  /* background-color: rgba(0,0,0,0.15); */
  /* backdrop-filter: blur(6px); */
}
.centered{
  position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
}

.brand{
  background-image: var(--vsd-brand);
  background-repeat: no-repeat;
  background-position: center;
  height: 60px;
  background-size: contain;
}

.bg-left{
  background-position: left;
}
.bg-right{
  background-position: right;
}


button {
    background: blueviolet;
    border: none;
    padding: 1em;
    color: white;
    margin: .25em auto;
    display: block;
    cursor: pointer;
    font-family: 'Comfortaa',sans-serif;
}


section {
    width: 80%;
    padding: 1em;
    margin: 40px auto;
    background: rgba(0,0,0,0.5);
    color: white;
}
section .titulo {
    font-size: 1.2em;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    margin-bottom: 1em;
    padding: .5em;
    color: #7e7e7e;
}
.v-full{
  display:
  table;
  width: 100%;
  padding: .5em;
}
.v-1-2 {
    display: table-cell;
    width: 50%;
    padding: 0;
    margin: 0;
    vertical-align: bottom;
}
.v-1-3 {
    display: table-cell;
    width: 33%;
    padding: 0;
    margin: 0;
}
.v-1-4 {
    display: table-cell;
    width: 25%;
    vertical-align: bottom;
}
h1,h2,h3,h4,h5,h6 {
    color: white;
    user-select: none;
}
input {
    border: none;
    height: 2em;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 0;
    font-family: 'Comfortaa';
    text-align: center;
    /* box-shadow: inset 0px 3px 5px rgba(0,0,0,0.5); */
    margin: 1px 0;
    display: inline-block;
    outline: none;
}
label {
    display: block;
    margin-bottom: .4em;
}
.window {
    min-width: 30%;
    max-width: 30%;
    display: block;
    background-color: var(--vsd-modal-bg-color);
    text-align: center;
    backdrop-filter: var(--vsd-modal-bg-filter);
    box-shadow: 0px 10px 10px black;
}
.window-title {
    height: 40px;
    border-bottom: 1px solid;
    background-color: rgba(0,0,0,0.5);
    cursor: move;
}

.window-body {
    width: 100%;
    height: 10em;
    margin: 1em auto;
}

.window-footer {
    border-top: 1px solid;
    margin: .5em auto;
    width: 100%;
    display: block;
}
.flex{
  display: flex;
  align-items: center;
  justify-content: center;

}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}

.left{
  text-align: left;
  justify-content: flex-start;
}
.right{
  text-align: right;
  justify-content: flex-end;
}

.size1-1{
  width: 100%;
}
.size1-2{
  width: 50%;
}
.size1-3{
  width: 33%;
}
.size1-4{
  width: 25%;
}
