@import url('https://fonts.googleapis.com/css2?family=Urbanist&display=swap');

* {
    color: #FFF;
    font-size: 50px;
    font-family: "Urbanist", serif;
    text-transform: lowercase;
}
body {
    background: #000;
    margin: 0;
}
img {
    position: fixed;
    z-index: 10;
    width: 50px;
    height: 50px;
    margin: 30px;
    cursor: pointer;
    animation: scale 1s forwards;
}
img:hover {
    opacity: 0.1;
    transition: 1s;
}
section {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
marquee {
    font-size: 100px;
}
div {
    display: flex;
    gap: 10px;
    margin: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
button {
    background: #651FFF;
    border: none;
    border-radius: 10px;
    padding: 5px 10px;
    cursor: pointer;
    animation: float 1s infinite;
}
input {
    background: #FFF;
    width: 300px;
    border: none;
    border-radius: 10px;
    padding: 5px 10px;
    color: #000;
}

#x {
    top: 0;
    left: 0;
}
#d {
    top: 0;
    right: 0;
}
#e {
    bottom: 0;
    left: 0;
}
#v {
    bottom: 0;
    right: 0;
}

@keyframes scale {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@media (max-width: 500px) {
    * {
        font-size: 20px;
    }
    marquee {
        font-size: 50px;
    }
}