html {
    background-attachment: fixed;
    width: auto;
    height: 100%;
    background-position-x: center;
    background-position-y: center;
    background-color: black;
}

body {
    background-color: none;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#home_background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}

#background_img_2 {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

a {
    color: #6E0087;
    text-decoration: underline transparent;
}

h1 {
    text-align: center;
    margin-top: 0;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 50%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

textarea {
    height: 100px;
}

button {
    padding: 10px 20px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.ticket-list {
    margin-top: 20px;
}

.ticket {
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}

.ticket h3 {
    margin-bottom: 5px;
}

.ticket p {
    margin-bottom: 10px;
}

#HOme {
    position: absolute;
    top: 5%;
    left: 6.5%;
    transform: translate(-93.5%, 95%);
    transform: rotate(60deg);
    z-index: 1;
}

#PLay {
    position: absolute;
    top: 5%;
    left: 12.5%;
    transform: translate(-87.5%, 95%);
    transform: rotate(60deg);
    z-index: 1;
}

#Social {
    position: absolute;
    top: 7%;
    left: 17.5%;
    transform: translate(-82.5%, 93%);
    transform: rotate(60deg);
    z-index: 1;
}

#Wiki {
    position: absolute;
    top: 5%;
    left: 24%;
    transform: translate(-76%, 95%);
    transform: rotate(60deg);
    z-index: 1;
}

.Container {
    position: absolute;
    top: 20%;
    left: 32%;
    transform: translateX(-68%);
    color: white;
    text-align: center;
    width: 30%;
    z-index: 2;
}

@media (max-width: 768px) and (orientation: portrait) {

    #home_background {
        display: none;
    }

    #background_img_2 {
        display: block;
    }

    footer {
        display: none;
    }

    #HOme {
        font-size: 12px;
        top: 6%;
        left: 11%;
        transform: translateX(-94%);
        transform: rotate(75deg);
    }

    #PLay {
        font-size: 12px;
        top: 6%;
        left: 23%;
        transform: translateX(-77%);
        transform: rotate(75deg);
    }

    #Social {
        font-size: 7px;
        top: 6%;
        left: 33%;
        transform: translateX(-67%);
        transform: rotate(75deg);
    }

    #Wiki {
        font-size: 12px;
        top: 6%;
        left: 47%;
        transform: translateX(-53%);
        transform: rotate(75deg);
    }

    .container {
        top: 20%;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

}