@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 2rem;
    height: 90vh;
    display: grid;
    place-items: center;
}

main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 50rem;
}

a {
    text-decoration: none;
    color: black;
    height: 15rem;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 1rem;
    transition: all 500ms ease-in;
}

.flex {
    border: 2px solid #ff2e63;
}

.grid {
    border: 2px solid #643579;
}

.flex:hover {
    border: 2px solid #010a43;
    background-color: #FFC2C2;
    box-shadow:
        4px 4px 0 #ff2e63,
        8px 8px 0 #010a43;
}

.grid:hover {
    border: 2px dashed #3d1860;
    background-color: #f5edf7;
    box-shadow:
        4px 4px 0 #643579,
        8px 8px 0 #3d1860;
}

footer {
    text-align: center;
    padding: 1.5rem 0 0 0;
    grid-column: 1 / -1;
}

footer a {
    display: inline;
}

@media (max-width: 768px) {
    main {
        grid-template-columns: 1fr;
        max-width: 25rem;
    }

    a {
        height: 12rem;
    }
}