:root{
  --bg: #16161b;
  --bgBox: #1f1f1f;
  --font: rgb(201, 218, 218);
  --fontLight: rgba(201, 218, 218, 0.5);
}
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body{
  height: 100vh;
  width: 100%;
  background-color: var(--bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  overflow-x: hidden;
  position: relative;
  color:var(--font);
}
header{
  min-height:80px;
  width:calc(100% - 40px);
  border-bottom: 1px solid var(--fontLight);
  background-color:rgba(22, 22, 27, 0.5);
  backdrop-filter:blur(20px);
  position:sticky;
  box-shadow:0 5px 10px var(--fontLight);
  top:0;
  padding:0 30px;
  border-radius:0 0 25px 25px;
  margin:0 20px 0 20px;
  z-index: 100;
  h2{
    color:var(--font);
  }
  a{
    padding:5px;
    position: absolute;
    text-decoration:none;
    top:auto;
    left:25px;
    color:var(--color1);
  }
}
main{
  width: 100%;
  min-height: calc(100vh - 80px);
  padding: 20px;
  display: grid;
  place-items: center;
  section.helloBox{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    article{
      width: 250px;
      min-height: 50px;
      border-radius: 10px;
      background-color: var(--bgBox);
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
      padding: 15px;
      display: flex;
      flex-direction: column;
      .name{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 0 10px 0 0;
        background-color: var(--bg);
        h2{
          border-radius: 0 0 10px 0;
          background-color: var(--bgBox);
        }
        h4{
          border-radius: 0 0 0 10px;
          text-shadow: 0 1px 3px rgb(10, 10, 10);
          color: var(--fontLight);
        }
        h2,h4{
          height: 100%;
          padding: 0 10px 10px 0;
        }
      }
      .code{
        width: 100%;
        min-height: 150px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        background-color: var(--bg);
        border-radius: 10px 0 10px 10px;
        padding: 10px;
        overflow-x: scroll;
      }
      ::-webkit-scrollbar{
        height: .5rem;
      }
      ::-webkit-scrollbar-thumb{
        border-radius: .25rem;
        border: 1px solid var(--bg);
        background: var(--fontLight);
      }
    }
  }
}
footer{
  flex-direction: column;
  min-height:200px;
  width:100%;
  background-color: rgb(10, 10, 10);
  padding:15px 30px 15px 30px;
  h2,div.info{
    width:100%;
    padding:10px 0;
    border-bottom:2px solid rgb(55, 55, 55);
  }
  h3,p{
    font-size: 0.8rem;
    font-weight: 600;
    padding:1px 0;
  }
  p{
    color:rgb(140, 140, 140);
  }
  div.info{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding:20px 30px;
    div{
      width: fit-content;
      flex-direction: column;
      align-items: start;
    }
  }
  div.ubic{
    width:100%;
    display: flex;
    justify-content: end;
    padding:10px 0 0 0;
    p{
      padding:0 3px;
      border-right:1px solid rgb(55, 55, 55);
    }
    p.dist{
      border:0;
    }
  }
}
.center{
  display:flex;
  justify-content:center;
  align-items: center;
  text-align:center;
}