html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
    background-image: url("img/BG/stars.png");
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: staranimation 20s linear infinite;
}

@font-face {
    font-family: doto;
    /* set name */
    src: url(fonts/doto/static/Doto-Regular.ttf);
    /* url of the font */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: doto;
    /* set name */
    src: url(fonts/doto/static/Doto-Bold.ttf);
    /* url of the font */
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: sourgummy;
    /* set name */
    src: url(fonts/Sour_Gummy/static/SourGummy-Medium.ttf);
    /* url of the font */
}

p {
    font-family: sourgummy;

}

@keyframes staranimation {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -300px 300px;
    }

    /* Adjust values for desired movement */
}

#headercloud {
    width: 100%;
}

.cloud-container {
    position: relative;
    width: 60%;
    /* Adjust based on your needs */
    margin: auto;
    margin-bottom: 15px;
}

.cloud-img {
    display: block;
    width: 100%;
    height: auto;
}

.cloud-text {
    position: absolute;
    top: 40%;
    /* Center vertically */
    left: 50%;
    /* Center horizontally */
    transform: translate(-50%, -50%);
    /* Adjust to center correctly */
    color: rgb(12, 17, 158);
    /* Text color, adjust as needed */
    font-size: 35px;
    /* Text size, adjust as needed */
    font-family: doto;
    font-weight: bold;
}

#centerpanel {
    margin: auto;
    background-color: #DCCFECdd;
    width: 80%;
    height: 80%;
    border-radius: 15px;
    border-style: solid; 
    border-color: #70566D;
    border-width: 5px;
}