body {
    background-color: #212121;
    margin: 0;
}

#loading-div {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 999;
}

#loading-main-text {
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-top: -60px;
    font-size: 40px;
    font-family: 'Poppins', sans-serif;
}

#loading-small-text {
    color: rgb(134, 134, 134);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-top: -15px;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
}

#navbar {
    width: 100%;
    height: 80px;
}

#icon {
    width: 138px;
    height: 55.5px;
    margin: 20px;
}

#create-project-button {
    cursor: pointer;
    position: absolute;
    width: 200px;
    height: 50px;
    color: white;
    background-color: #5800A6;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 19px;
    border-radius: 10px;
    border: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 1s;
}

#create-project-button:hover {
    background-color: #8800FF;
    box-shadow: 0 0 100px 10px #8800FF;
}

#p-text {
    position: absolute;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 60px;
    font-family: 'Dancing Script', cursive;
    font-size: 30px;
}

#background-image {
    position: absolute;
    width: 100%;
    height: 100vh;
    margin-top: -80px;
    z-index: -1;
    filter: blur(10px);
}