@import url(https://fonts.googleapis.com/css2?family=Potta+One&display=swap);

html {
    background-image: -webkit-linear-gradient(120deg, #77c2f7ba 40%, #1973f5ba 70%);
    min-height: 700px
}

body {
    text-align: center;
    margin: 0 0
}

h1 {
    font-size: 4rem;
    color: #fff200;
    font-weight: 700;
    text-shadow: 4px 3px #e6198f;
    font-family: 'Potta One', cursive
}

h3{
    font-size: 2rem;
    color: #fff200;
    font-weight: 700;
    text-shadow: 4px 3px #e6198f;
    font-family: 'Potta One', cursive
}

#user {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px
}

.choose {
    width: 33vw;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.choose img {
    width: 70%;
    height: 25vh
}

#show {
    text-align: center;
    justify-content: center;
    align-items: center;
    color: #fff200;
    font-weight: 700;
    text-shadow: 2px 2px #e6198f
}

#show img {
    height: 100px;
    width: 120px
}

button {
    border: none;
    padding: 10px;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 10px;
    background-color: #942626;
    color: #fff;
    font-weight: 700;
    margin: 20px
}

button:hover {
    background-color: #f90000a8
}

footer {
    position: absolute;
    text-align: center;
    width: 100%;
    background-color: #2c4f82;
    color: azure;
    margin-top: 20px
}

footer a {
    text-decoration: none;
    color: azure
}

@media (min-width:200px) and (max-width:600px) {
    h1 {
        font-size: 2rem
    }

    #user {
        flex-direction: column;
        margin-top: 25px
    }

    .choose {
        width: 70vw;
        height: 120px
    }
}