* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    min-height: 100%;

    position: relative;
}

p {
    color: rgb(189, 154, 122);
}

a:link {
    color: red;
}

a:visited {
    color: brown;
}

footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    max-width: 130vh;
    align-items: center;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    min-width: 100%;
    width: 100%;
    height: 15vh;
    z-index: 1000;
    background: rgb(144, 238, 144);
} 