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

body {
    background-color: none;
    justify-content: center;
    align-items: center;
}

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

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

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

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

h2 {
    font-size: 20px;
}

p {
    font-size: 14px;
}

.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;
    font-size: 18px;
    top: 5%;
    left: 6.5%;
    transform: translate(-93.5%, 95%);
    transform: rotate(60deg);

}

#Play {
    position: absolute;
    font-size: 18px;
    top: 5%;
    left: 12.5%;
    transform: translate(-87.5%, 95%);
    transform: rotate(60deg);
}

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

    #background_img_1 {
        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);
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

}