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

body {
    background-color: #F7F8FA;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
}

.card {
    text-align: justify;
    width: 80%;
    height: 80%;
    padding: 5%;
    margin-top: 5%;
    margin-bottom: 5%;
    border-radius: 10px;
    border: 2px solid white;
    box-shadow: 0px 4px 8px 0px rgb(0, 35, 102, 0.2);
}

p {
    line-height: 140%;
}

ul {
    list-style-type: disclosure-closed;
}

li {
    line-height: 145%;
}

footer {
    font-size: 12px;
    color: rgba(88, 88, 88, 0.5);
}

.square {
    transition: 1s;
    margin-left: 90px;
    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: 1s;
    transform: rotate(-180deg);
}

.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;
}

@media screen and (max-width: 736px) {
    .square {
        margin-left: 10px;
        margin-bottom: 20px;
    }
    .card {
        width: 90%;
        padding: 10%;
    }
}