@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%;
    padding: 0%
    
}
img{ 
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h2 {
    border-color: rgb(207, 141, 169);
    border-style: solid;
    border-width: 2px;
    border-radius: 1.5em;
    height: 5em;
    display: grid;
    align-items: center;
    justify-content: center;
}

article {
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    padding: 0;
    display: grid;
       
}


main {
    display: grid ;
    grid-template-columns: repeat(4, 1fr);
    
    grid-gap: 20px;
    padding: 2em;
}

main > article:nth-child(1) > h2{
grid-row: 1/2;
}

main > article:nth-child(1) > img{
    grid-row: 2/3;
}



main > article:nth-child(2) h2{
    grid-row: 1/2;
}



main > article:nth-child(3){
    grid-column-start: 3;
    grid-column-end: 3;
}

main > article:nth-child(4){
    grid-column-start: 4;
    grid-column-end: 4;
}

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 {
    color: inherit;
}

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

a:active {
    text-decoration: none;
}
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;
    
}