@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100&display=swap');

header {
   
    background-color: rgb(207, 141, 169);
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    font-size: 2em;
    margin: 0%;
    
}

nav {
    display: grid ;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

nav a {
    text-align: center;
}

main {
    padding: 2em;
    font-family: 'Roboto Mono', monospace;
}


nav div {
    border-color: rgb(207, 141, 169);
    border-style: solid;
    border-width: 2px;
    border-radius: 1.5em;
    height: 5em;
    display: grid;
    align-items: center;
    justify-items: center;
    font-size: 1.5em;
    font-weight: bold;
}

a {
    color: inherit;
}

article h1 {
    font-size: 3em
}




aside {
    background-color: white;
    border-color: rgb(207, 141, 169);
    border-style: solid;
    border-width: 2px;
    border-radius: 1.5em;
    text-align: center;
    grid-column: 2/2;
}


body {
    background-color: rgb(241, 199, 215);
    font-family: 'Roboto Mono', monospace;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
    color:rgb(43, 43, 43);
}


a:hover {
    text-decoration: underline;
    color: rgb(255, 255, 255);
    text-shadow: 0 0 20px white;
}

a:active {
    text-decoration: none;
}

h1 a:hover {
    text-decoration: none;
}

#current {
    color: rgb(255, 255, 255);
    text-shadow: 4px 4px 10px white;
}

footer{
    background-color: rgb(207, 141, 169);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
}
footer p {
    text-align: center;
    justify-content: center;
}

footer > p:nth-child(1){
    grid-column: 1/1;
    
}
footer > p:nth-child(2){
    grid-column: 2/2;
    
}