.container{
    background-color: white;
    height: 50vh;
    width: 75vw;
    margin-left: 12.5vw;
    margin-right: 12.5vw;
    margin-top: 10vh;
    border-radius: 100px;
    display: grid;
    grid-template: 20vh 20vh / 30vw 30vw;
    gap: 1vh;
}
body{
    background: linear-gradient(to bottom, purple, rgb(238, 0, 238));
    background-size: 100vw 100vh;

}

button{
    width: 100%;
    height: 100%;
    margin-top: 4.5vh;
    margin-left: 7vw;
    border: 3px solid blueviolet;
    border-radius: 10px;
    background-color: blueviolet;
    color: white;
    font-size: 15px;
    box-shadow: 0 2px 15px blueviolet;
    font-size: 30px;
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    font-style: normal;
}

#desc{
    background-color: white;
    width: 90vw;
    margin-left: 4vw;
    margin-right: 4vw;
    margin-top: 10vh;
    border-radius: 10px;
    font-size: 2vh;
    padding: 1vw;
    resize: none;
    height: 20vh;
}

*{
    margin: 0;
}

.floor_ad{
    background-color: rgb(132, 0, 255);
    box-shadow: 0 -2px 15px blueviolet;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

@media (max-width: 1080px) {
    button {
        font-size: 20px;
    }
}

@media (max-width: 720px) {
    button {
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    .container {
        height: 100vh;
        grid-template: 20vh 20vh 20vh 20vh / 60vw;
    }
    button {
        margin-top: 8.5vh;

    }
    body {
        background-size: 100vw 200vh;
    }
}