html {
    cursor: url('https://i.ibb.co/9NB5Dnd/icons8-cursor-24.png'), pointer;
    }
    
    body {
    background-color: black;
    background-image: url('https://i.imgur.com/Aa5UiIA.jpeg');
    background-size: windowWidth, windowHeight;
    background-position: top center;
    width: windowWidth;
    height: windowHeight;
    cursor: url('https://i.ibb.co/9NB5Dnd/icons8-cursor-24.png'), pointer;
    position: inherit;
    }
    
    .rectangle {
    top: 50%;
    left: 50%;
    width: 35%;
    height: 300px;
    border: solid 1px rgba(255, 255, 255, 0.168);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: absolute;
    transform: translate(-50%, -50%);
    }
    
    @media (max-width: 667px) {
    .rectangle {
        top: 50%;
        left: 50%;
        width: 80%;
        height: 250px;
        }
    
    }
    
    .pfp {
    border-radius: 100%;
    width: 150px;
    height: 150px;
    max-width: 150px;
    max-height: 150px;
    margin-top: -70px;
    border: solid 5px rgb(255, 255, 255);
    scale: 1;
    transition: 0.3s ease;
    }
    
    .pfp:hover {
    scale: 1.05;
    }
    
    @media (max-width: 667px) {
    .pfp {
        width: 120px;
        height: 120px;
        border: solid 3px rgb(255, 255, 255);
    }
    }
    
    .nickname {
    scale: 1;
    color: rgb(255, 255, 255);
    font-size: 30px;
    max-block-size: 15px;
    font-family: DM Sans;
    transition: 0.3s ease;
    font-weight: 900;
    margin-top: -10px;
    }
    
    .nickname:hover {
    scale: 1.05;
    }
    
    #statusImage {
    width: 18px;
    margin-left: 10px;
    }
    
    .joined-data {
    scale: 1;
    font-family: DM Sans;
    font-weight: 200;
    font-size: 20px;
    color: rgb(255, 255, 255);
    transition: 0.3s ease;
    }
    
    .joined-data:hover {
    scale: 1.03;
    }
    
    .social-btns {
    margin-top: 0px;
    padding-left: 10px;
    width: 40px;
    transition: 0.3s ease;
    scale: 1;
    }
    
    .social-btns:hover {
    scale: 1.15;
    cursor: pointer;
    }
    
    .copyright {
    font-family: DM Sans;
    color: rgb(255, 255, 255);
    font-size: 20px;
    top: 92%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    }
    
    
    #entry-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    }
    
    #enter-button {
    padding: 15px 30px;
    font-size: 25px;
    color: rgb(255, 255, 255);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-family: DM Sans;
    }
    
    #enter-button:hover {
    transform: scale(1.05);
    }
    
    #friend {
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-family: DM Sans;
    }