@media (prefers-color-scheme: light) {
    body {
      background: #ffffff;
      color: #333333;
  }
}
  @media (prefers-color-scheme: dark) {
    body {
      background: #333333;
      color: #ffffff;
  }
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.first {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background: url('/img/wallpaper.jfif');
    background-size: 100% 100%;
    background-attachment: fixed;
    color: #ffffff;
}

img {
    height: 200px;
    width: 200px;
    border-radius: 200px;
}

.secondtitle {
    text-align: center;
    font-family: 'Inconsolata', monospace;
    margin-bottom: 21vh;
}

.second {
    margin-bottom: 21vh;
}

.container
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.container .progress
{
    position: relative; 
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #444 linear-gradient(to right, transparent 50%, var(--clr) 0);
    color: #fff;
}

.container .progress h3
{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5em;
    font-weight: 500;
    z-index: 1;
}

.container .progress h3 span
{
    font-size: 0.65em;
    font-family: 400;
}

.container .progress h4
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-weight: 500;
    color: var(--clr);
    text-transform: uppercase;
}

.container .progress::before
{
    content: '';
    display: block;
    height: 100%;
    margin-left: 50%;
    transform-origin: left;
    border-radius: 0 100% 100% 0/50%;
}

.container .progress::after
{
    content: '';
    position: absolute;
    inset: 10px;
    background-color: #333;
    border-radius: 50%;
}

.container .progress::before
{
    background-color: var(--clr);
    transform: rotate(calc(calc((var(--i) - 50) * 0.01turn)));
}

.container .progress.less::before
{
    background-color: #444;
    transform: rotate(calc(calc((var(--i) - 0) * 0.01turn)));
}

.copyright {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    margin: 0;
}

.copyright p {
    margin: 0;
}

.copyright1 {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
}

p.tip {
    font-size: smaller;
}

.hiddencontent {
    color: #000000;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}