body {
    background-color: black;
    margin: 0;
    padding: 0;
}


#starty {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-fit: fill;
}

#starty::-webkit-media-controls {
    display: none;
}

#starty::-webkit-media-controls-enclosure {
    display: none;
}

.firstPage {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}


textarea[name="select1"] {
    padding: 5px;
    font-size: 14px;
    border: none;
    border-radius: 10px;
    width: 200px;
    height: 50px;
    resize: vertical;
    background-image: linear-gradient(to bottom, #52bdff, #000000);
    background-size: 100% 200px;
    background-position: 0% 100%;
    transition: background-position 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: white;
}

textarea[name="select1"]:focus {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    background-position: 100% 100%;
}

textarea[name="select1"]::placeholder {
    font-size: 18px;
    /* increased font size to 18px */
    color: #ccc;
}

textarea[name="select1"]:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background-position: 50% 100%;
}

.loader1 {
    top: 75%;
    left: 48%;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.startGame {

    position: absolute;
    top: 79vh;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);


    background-color: rgb(243, 56, 56);
    color: #FFFFFF;
    font-weight: 600;
    font-size: larger;
    border: none;
    padding: 15px 32px;
    cursor: pointer;


    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.startGame:hover {
    background-color: green;
}

.select1 {
    position: absolute;
    top: 70vh;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 100;
}

@media screen and (max-width:456px) {
  .loader1{
    left: 39%;
  }
  #starty{
    top: -4vh;
  }
}