body {
    text-align: center;
    background-image: url('gangsta mario transparnet.png');
    background-color: black;
    color: white;
    animation: bgscroll 120s linear infinite;
    font-family: cursive;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}
p {
  border: 7px solid green;
  background-color: darkgreen;
  width: 1000px;
  padding: 7px;
  margin: 0 auto;
}
@keyframes bgscroll {
    0% {
        background-position: 50vw 140vh, 50vw 50vh;
    }
}

        
        #search-container {
            width: 70vw; 
            max-width: 600px;
            margin-bottom: 20px; 
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #search-bar {
            padding: 12px 20px;
            font-size: 16px;
            width: 100%;
            border: 2px solid #ccc;
            border-radius: 25px; 
            box-sizing: border-box; 
        }


        #iframe-container {
            width: 80vw;
            max-width: 1200px;
            height: 60vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: darkgreen;
            border: 7px solid green;
        }

 
        iframe {
            width: 100%;
            height: 100%;
            border: none;
        }


        #search-button {
            display: none; 
        }