body {
    background: linear-gradient(10deg, #8a55e7, #b391e0, #8a55e7);
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 100px; /* Much bigger row and column gap */
    justify-content: center;
    margin: 30px auto 0 auto; /* Reduced top margin */
    max-width: 1200px;
}

.corner {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    font-style: italic;
    color: #adf5ff;
    margin: 60px 0; /* Bigger vertical space between items */
    font-size: 70px;
    border-radius: 25px;
    padding: 10px 30px 10px 30px;
    background: linear-gradient(135deg, #ffa3d9, #f368be);
    display: inline-block;
    border: 6px solid #d664aa;
    text-align: center;
}

.corner2 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    font-style: italic;
    color: #adf5ff;
    margin: 60px 0; /* Bigger vertical space between items */
    font-size: 70px;
    border-radius: 25px;
    padding: 10px 30px 10px 30px;
    background: linear-gradient(255deg, #ffa3d9, #f368be);
    display: inline-block;
    border: 6px solid #d664aa;
    text-align: center;
}

.main-title {
    background: linear-gradient(45deg, #f85cbc, #f3afd9, #f85cbc);
    color: aquamarine;
    font-size: 120px;
    animation: rotateAnim 6s ease-in-out infinite;
    margin-top: 100px;
}

a.corner, a.corner2 {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease;
}

a.corner:hover, a.corner2:hover {
    transform: scale(1.08) rotate(2deg);
}

@keyframes rotateAnim {
    0% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
    100% { transform: rotate(-3deg); }
}