/* Style Settings */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width:  193px;
    height: 157px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    margin-top: 10px;
    margin-bottom: 50px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.box {
    width: 370px;
    height: 118px;
    background-color: #000;
    transition: transform 0.3s ease-in-out;
}

.box img:hover {
    transform: scale(1.0);
    animation: pulse 1s;
}

.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7em;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    font-family: 'Open Sans', sans-serif;
}

