* {
    box-sizing: border-box;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
}

body .container .cards .card:nth-of-type(1) .canvas,
body .container .cards .card:nth-of-type(2) .canvas,
body .container .cards .card:nth-of-type(3) .canvas,
body .container .cards .card:nth-of-type(4) .canvas,
body .container .cards .card:nth-of-type(5) .canvas {
    height: 11rem;
    width: 8rem;
    border-radius: 2px;
    transition: 0.3s ease all;
}

body .container .cards .card:nth-of-type(1) .hex,
body .container .cards .card:nth-of-type(2) .hex,
body .container .cards .card:nth-of-type(3) .hex,
body .container .cards .card:nth-of-type(4) .hex,
body .container .cards .card:nth-of-type(5) .hex {
    padding-top: 0.75rem;
    padding-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

body,
body .container .cards,
body .container .cards .card {
    display: flex;
    align-items: center;
    justify-content: center;
}

body {
    margin: 0;
    background-color: #EBEBF3;
    min-height: 100vh;
    text-align: center;
    overflow-x: hidden;
}

p {
    margin: 0 0 2em 0;
}


/************ Square *************/

.square {
    transition: 1s;
    margin-left: -1000px;
    margin-top: 100px;
    border: 5px solid #000;
    letter-spacing: normal;
    line-height: normal;
    /* Color & Background */
    color: rgb(0, 0, 0);
    /* Box */
    height: 50px;
    width: 50px;
    /* Positioning */
    position: relative;
    /* Effects */
    transform: matrix(6.12323e-17, -1, 1, 6.12323e-17, 0, 0);
    transition: transform 0.4s ease-in-out 0s;
    box-sizing: content-box;
    margin-bottom: 10px;
    border-radius: 10px;
}

.square:hover {
    transition: 0.5s;
    transform: rotate(-180deg);
}

@media screen and (max-width: 736px) {
    .square {
        margin-left: 10px;
        margin-bottom: 20px;
    }
    .form-wrap {
        width: 300px;
        height: 200px;
    }
}

.logo-text {
    text-align: center;
    font-size: 25px;
    letter-spacing: normal;
    /* Positioning */
    position: absolute;
    top: 25px;
    bottom: 10.7778px;
    right: 5.29167px;
    left: 25px;
    float: none;
    display: block;
    clear: none;
    z-index: auto;
    /* Effects */
    transform: matrix(6.12323e-17, 1, -1, 6.12323e-17, -9.77778, -7.11111);
    transition: transform 0.4s ease-in-out 0s;
}

body .container {
    max-width: 1100px;
    margin: auto;
    padding: 2rem 0;
}

body .container h2 {
    font-size: 1.8rem;
    word-spacing: 0.25rem;
    text-transform: capitalize;
    text-align: center;
}

body .container .cards {
    margin-top: 3rem;
    flex-wrap: wrap;
}

body .container .cards .card {
    height: 14.5rem;
    width: 9rem;
    margin: 1rem 1.5rem;
    background-color: #fff;
    flex-direction: column;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.4s ease all;
}

body .container .cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 2px 12px #A3B2C2;
}

body .container .cards .card:nth-of-type(1) .canvas {
    background-color: #93B8E3;
}

body .container .cards .card:nth-of-type(1) .hex {
    color: #7C7C84;
}

body .container .cards .card:nth-of-type(2) .canvas {
    background-color: #A3B2C2;
}

body .container .cards .card:nth-of-type(2) .hex {
    color: #7C7C84;
}

body .container .cards .card:nth-of-type(3) .canvas {
    background-color: #FBABA4;
}

body .container .cards .card:nth-of-type(3) .hex {
    color: #7C7C84;
}

body .container .cards .card:nth-of-type(4) .canvas {
    background-color: #7C7C84;
}

body .container .cards .card:nth-of-type(4) .hex {
    color: #4C545F;
}

body .container .cards .card:nth-of-type(5) .canvas {
    background-color: #AF4884;
}

body .container .cards .card:nth-of-type(5) .hex {
    color: #7C7C84;
}

body .container .btn {
    margin-top: 3rem;
    border: none;
    outline: none;
    background-color: black;
    color: #fff;
    font-weight: 600;
    padding: 1rem 4rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease all;
}

body .container .btn:hover {
    transition: 0.5s;
    background-color: #4169e1;
}