* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    min-height: 100vh;
    background-image: url("../images/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.click {
    padding: 15px 0;
    border: 4px solid rgb(20, 20, 20);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
}
.play {
    animation: play .07s;
}
@keyframes play {
    100% {
        transform: scale(1.1);
        border-color: #ffc600;
        box-shadow: 0p 0px 10px #ffc600;
    }
}
.click p {
    font-size: 1.8em;
    font-weight: bolder;
    color: white;
    margin-bottom: 5px;
}
.click span {
    color: #ffc600;
    font-size: .8em;
}
@media (min-width: 325px) and (max-width: 500px) {
    .container {
        width: 90%;
    }
    .click {
        width: 30%;
        margin-bottom: 15px;
    }
}
@media (min-width: 501px) and (max-width: 1023px) {
    .container {
        width: 80%;
    }
    .click {
        width: 30%;
        margin-bottom: 15px;
    }
}
@media (min-width: 1024px) and (max-width: 1440px) {
    .container {
        width: 80%;
    }
    .click {
        width: 10%;
    }
}
@media (min-width: 1441px) {
    .container {
        width: 65%;
    }
    .click {
        width: 10%;
    }
}