*{
    margin: 0;
}

body{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    height: 100vh;
    width: 100vw;
}

article{
    grid-column: span 3;
    background-color: #181818;
}

aside{
    grid-column: span 9;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    background-color: #212121;
    grid-gap: 10px;
}

a{
    text-decoration: none;
    box-shadow: 0 0 5px rgba(97, 97, 97, 0.5);
    border-radius: 15px;
    padding: 5px;
    transition: 1s;

}

a:hover{
    transform: scale(1.05);
}

aside div{
    color: white;
    -webkit-text-stroke: 0.3px black;

}

aside a div img{
    width: 100%;
    border-radius: 15px;
    margin-bottom: 5px;
}