* {
    margin: 0;
}

@font-face {
    font-family: MCFont;
    src:url(Minecraft.ttf) format('truetype');
}

.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: MCFont;
    line-height: 2.5;
}

#MainPage {
    height: 100%;
    width: 100%;
    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;
}

.background-6 {
    background-image: url("assets/background-5.jpg");
}

.background-7 {
    background-image: url("assets/background-6.jpg");
}

#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: MCFont;
}

#text-box {
    width: 84%;
    height: 100px;
    padding: 50px 8%;
    position: absolute;
    bottom: 0;
    left: 0;
    font-style: rgb(90, 90, 90);
    font-size: 14px;
    font-family: MCFont;
}

#window-box {
    width: 100%;
    height: 100%;
    font-family: MCFont;
}

#window-img {
    display: flex;
    margin: 0, 250px, 750px, 250px;
    max-width: 100%;
    object-fit: cover;
    position: fixed;
}

.imgright {
    position: fixed;
    top: 100px;
    left: 280px;
}

.imgcenter {
    position: fixed;
    left: 810px;
    top: 460px;
}

.imgleft {
    position: fixed;
    top: 100px;
    left: 1395px;
}


#window-text {
    font-size: 21px;
    margin: 125px 350px 0 350px;
}

#window-title {
    font-size: 50px;
    margin-top: 155px;
    text-align: center;
    color: rgb(255,0,0);
}

#EndPage {
    height: 100vh;
    width: 100vw;
    background-color: black;
    cursor: pointer;
    line-height: 200px;
    position: absolute;
    text-align: center;
    color: white;
    font-family: MCFont;
}

#end-box {
    margin-top: 350px;
}

.prevent-select {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}