:root {
    /* Tipografias */
    --font-family: sans-serif;

    /* Tamaños de Letra */
    --font-size01: 16px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

html {
    font-size: var(--font-size01);
}

body {
    font-family: var(--font-family01);
}

#container {
    height: 100vh;

    background-color: cornflowerblue;
    background-image: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 1),
        rgba(0, 0, 0, 0.5)
    );

    display: flex;
    flex-direction: column;
}

h1 {
    text-align: center;
    padding: 1rem;
    margin: 1rem;

    color: aliceblue;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 3rem;
    text-shadow: 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.enlaces {
    background-color: rgb(163, 251, 222);
    margin: 1rem;
    padding: 1rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;

    border-radius: .5rem;
}

.enlace {
    background-color: rgb(225, 250, 241);

    padding: 1rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;

    border-radius: .5rem;
}

img {
    height: 13rem;
    width: 16rem;
}

.enlace > p {
    padding: 1rem;
    font-size: 2rem;
    color: coral;

    display: flex;
    align-items: center;

    border-radius: 0.5rem;
    background-color: rgb(240, 255, 254);
    flex: auto;
}