* {
    --webkit-box-sizing: border-box;
    --moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: url(../files/1.jpg);
    background-size: cover;
}

span {
    color: #ffdf42;
}


.app {
    width: 100%;
    height: 100vh;
    padding: 100px;
}

@media (max-width: 767px) {
    .app {
        padding: 40px 0;
    }

    .app .container .head {
        margin: 5px;
    }
}

.app .container {
    margin: auto;
    width: 365px;
    height: 420px;
    text-align: center;
    background: linear-gradient(#1500bb,#150050,#26004f,#150050,#26004f);
    border-radius: 5px;
}

.app .container .head {
    background: linear-gradient(#1500bb,#150050,#26004f,#150050,#26004f);
    padding: 20px;
    border-radius: 5px;
    transition: 0.5s;
    overflow: hidden;
}

.app .container .head:hover {
    cursor: pointer;
}

.app .container .head p {
    color: #9a0076;
    font-weight: 800;
    font-size: 32px;
}

.app .container .head p span:first-child {
    color: #9a0076;
}

.app .container .head p .last {
    color: #fff;
}

.app .container .body {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.app .container .body .box {
    width: 100px;
    height: 100px;
    background-color: #1500bb;
    float: left;
    text-align: center;
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    transition: 0.5s;
}

.app .container .body .box:hover {
    background-color: #9a0076;
    cursor: pointer;
}