@import url('https://fonts.googleapis.com/css2?family=Aldrich&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
* {
  transition: 1s all;
}
body{
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  margin: 0;
  background: center url("../img/QbesWallpaper5.png");
  background-size: cover;
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
}

body > div{
  box-shadow: inset 0px 0px 20px 10px #000;
  background-color: #00000020;
  border-radius: 20px;
  margin: 5px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media screen and (min-width: 1080px) {
  body > div:hover{
    background-color: #ffffff30;
    padding: 0 10px;
  }
}

body > div > div{
  transition: 1s all;
  margin: 10px;
}

header{
  font-family: 'Aldrich', sans-serif;
  background-color: #00000060;
  border-bottom: solid #000 2px;
  font-size: 30px;
  text-align: center;
  padding: 20px 0;
  border-radius: 20px 20px 0 0;
}

@media screen and (min-width: 1080px) {
  body > div:hover header{
    margin: 0 -10px ;
  }
}

.embed{
  display: flex;
  gap: 10px;
  text-align: center;
}

.yeah{
  display: inline-block;
  width: 250px;
  height: 125px;
}

.copypaste{
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
  height: 125px;
  gap: 10px;
}

.copypaste :not(script) {
  font-size: 1.9em;
  flex-grow: 1;
  flex-shrink: 1;
  text-decoration: none;
  background: #ffffff50;
  border: solid #fff 1px;
}

.copypaste :hover{
  background-color: #ffffff90;
}

.spoiler{
  height: 400px;
  outline: solid #aaa 2px;
  border-radius: 0;
}

iframe{
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

a{
  color: #fff;
}

.qbes{
  width: var(--col-4);
  img{
    width: 100%;
  }
}

.projects div{
  flex-grow: 0;
}

.me div{
  flex-grow: 1;
}


@media screen and (max-width: 1080px) {
  body{
    flex-direction: column;
    flex-wrap: wrap;
    margin: 5px;
    gap: 10px;
  }

  body > div{
    margin: 0;
  }

  .qbes{
    width: auto;
  }

  .me{
    min-height: inherit;
  }
}