body {
    background: #f0f0f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
}

.logo {
    flex: 0 0 auto;
    text-align: center;
}

.container {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: -20px;
}

.center-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.icon-element {
    border-radius: 20px;
    height: 219px;
    width: 390px;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.093);
}

.icon-element:hover {
    background: #e0e0e0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.icon-element:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.logo img {
    height: 30px;
    padding: 20px;
    padding-top: 40px;
}

.logo h1 {
    font-size: 5rem;
    font-weight: bold;
    color: #333;
    margin: -20px 0 0 0;
    font-family: Helvetica, sans-serif;
}