body {
    margin:0;
    padding:0;
    background-image: url("/background.jpg");
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
    user-select:none;
    height:100%;
}
body::before {
    content:"";
    z-index:-1;
    filter: blur(2px);
    background:inherit;
    position:fixed;
    width:100%;
    height:100%;
    top: 0; left: 0;
}
a {
    text-decoration: none;
}
.topbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 60px;
      background: rgba(200,200,200,0.1);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 0 20px;
      box-sizing: border-box;
      z-index:50;
      gap:10px;
}
.topbar a {
    color:white;
    font-family:sans-serif;
    font-weight:bold;
    background:rgba(220055, 200, 200, 0.075);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 7px;
    text-shadow: 0 0 5px rgba(200,200,200,0.3);
    transition: all ease 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.topbar a:hover {
    background:rgba(200,200,200,0.2);
    text-shadow: 0 0 5px rgba(200,200,200,0.6);
}
.topbar a:active {
    background:rgba(200,200,200,0.1);
}
.topbar .title {
    position:fixed;
    color:white;
    font-family:sans-serif;
    font-weight: bold;
    left:50%;
    transform: translateX(-50%);
    z-index:20;
    text-shadow: 0 0 5px rgba(200,200,200,0.3);
    font-size:25px;
    transition: all ease 0.3s
}
.topbar .title:hover {
    text-shadow: 0 0 5px rgba(200,200,200,0.6);
}
.content {
    margin-top:60px;
}
.isoframe {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);

    position:absolute;
    min-width:650px;
    max-width:800px;
    width:650px;
    background:rgba(200, 200, 200, 0.2);
    left:50%;
    top:10%;
    transform: translate(-50%,0%);
    border-radius:20px;
    backdrop-filter:blur(10px);
    color:White;
    font-family:sans-serif;
    font-weight:bold;
    text-align: center;
    text-shadow: 0 0 10px rgba(200,200,200,0.3);
    transition: all ease 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.isoframe h1:hover {
text-shadow: 0 0 10px rgba(200,200,200,0.5);
}
.isolist {
    display:flex;
    flex-direction: column;
    align-items: center;
    gap:10px;
}
.iso {
    border: 1px solid rgba(255, 255, 255, 0.2);
    width:600px;
    height:55px;
    background:rgba(200,200,200,0.1);
    backdrop-filter:blur(10px);
    border-radius: 15px;
    display:flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    font-size:20px;
    text-shadow: 0 0 10px rgba(200,200,200,0.6);
    transition: all ease 0.3s;
}
.iso:hover{
    transform:scale(1.05);
}
.home-info {
    position:absolute;
    left:50%;
    top:10%;
    transform: translateX(-50%);
    
    width:90%;
    max-width:800px;

    min-height:300px;
    padding:20px;
    background:rgba(200,200,200,0.25);
    backdrop-filter:blur(10px);
    border-radius:20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    text-align:center;
    color:white;
    font-family:sans-serif;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255,255,255,0.45);
    transition: all ease 0.3s;
}
.home-info h1 {
    font-size:35px;
}
.home-info h1:hover {
    text-shadow: 0 0 10px rgba(255,255,255,0.65);
}
.copyright {
    position:absolute;
    left:50%;
    transform:translate(-50%,0%);
    bottom:0;
}