* {
    margin: 0;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.noshow {
    display: none;
}

#welcome-box {
    width: 250px;
}

.gengar-div {
    width: 250px;
}

.h-center {
    margin: auto;
}

.centered-element {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.w-button {
    width: 90%;
    margin: 10px 5%;
    padding: 16px 10px;
    border-radius: 12px;
    border: none;
    background-color: #8d69b0;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.button-hover:hover {
    background-color: #4f3f96;
    cursor: pointer;
}

#password-box {
    width: 400px;
}

.input-div {
    margin: 40px 0;
}

.p-input {
    width: 50%;
    margin: 0 14px;
    padding: 16px 10px;
    border-radius: 12px;
    border: 1px solid #8d69b0;
    font-size: 14px;
    font-weight: bold;

}

.p-button {
    width: 30%;
    margin: 0 12px;
    padding: 16px 10px;
    border-radius: 12px;
    border: none;
    background-color: #8d69b0;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

#incorrect-pw-div {
    color: #8d69b0;
    font-size: 14px;
    text-align: center;
}

#InfoPage {
    cursor: pointer;
    height: 100vh;
    width: 100vw;
}

#info-box {
    width: 400px;
    font-size: 14px;
    font-family: 'MinecraftiaRegular';
    line-height: 2.5;
}

#MainPage {
    height: 100vh;
    width: 100vw;
    background-color: black;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.background-1 {
    background-image: url("assets/background-1.jpg");
}

.background-2 {
    background-image: url("assets/background-2.jpg");
}

.background-3 {
    background-image: url("assets/background-3.jpg");
}

.background-4 {
    background-image: url("assets/background-4.jpg");
}

.background-5 {
    background-color: black !important;
}

#dialogue-box {
    width: 84%;
    height: 100px;
    padding: 50px 8%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 90%, rgba(255, 255, 255, 0.1) 100%);
    color: white;
    font-size: 14px;
    font-family: 'MinecraftiaRegular';
}

#window-box {
    width: 45%;
    height: 100%;
    font-family: 'MinecraftiaRegular';
    font-size: 14px;
    padding: 0 55px 0 25px;
}

#window-img {
    display: flex;
    justify-content: center;
    margin-top: 125px;
}

.v-stagger {
    margin-top: 300px;
}

#window-text {
    margin-top: 250px;
    padding: 0 55px 0 25px;
}

#EndPage {
    height: 100vh;
    width: 100vw;
    background-color: black;
    cursor: pointer;
}

#end-box {
    color: white;
    width: 400px;
    font-size: 14px;
    font-family: 'MinecraftiaRegular';
    line-height: 2.5;
}

.prevent-select {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}