body {
    background-image: url('/assets/bg/stars.gif');
    margin: 0;
    height: 100vh; /* full viewport height */
    display: flex;
    justify-content: center; 
    align-items: center;
}

p {
    color: #FFF;
    text-align: justify;
    font-family: Ishmeria;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    margin: 0;
}

.welcomeBox {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    column-gap: 20px;
    width: 606px;
}

.welcomeBox img {
    width: 85px;
    height: auto;
}

.welcomeText {
    display: flex;
    width: 400px;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 45px;
}

.enterCastle{
    width: 100%;
    font-family: Ishmeria;
    font-size: 24px;
    color: #FFF;
    text-align: center;
    background-color: transparent;
    border: transparent;
    text-decoration: none;
}

.enterCastle:hover {
    cursor: pointer;
    color: aqua;
}