@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --primary-color: #161616;
    --secondary-color: rgb(40, 40, 40);
    --heading-color: #0096c8;
    --text-color: ghostwhite;
    --highlight-color: rgba(255, 255, 255, 0.082);
}

* {
    background-color: #1d1d1d;
    text-decoration: none;
    font-family: "roboto";
    border-radius: 10%;
}

header {
    text-align: center;
    color: var(--heading-color);
    font-size: 24px;
}
  
main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 5%;
    margin-top: 5%;
    justify-content: center;
    justify-items: center;
}
  
h2 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1;
    color: var(--heading-color);
}

h2, p, a, .time{
    background-color: #2d2d2d;
}
  
img {
    width: 100%;
    height: auto;
}
  
.recipe {
    background-color: #2d2d2d;
    width: 250px;
}

a {
    box-shadow: 0px 5px 75px 1px rgba(0, 150, 200, 0.5);
    text-align: center;
}

a:hover {
    transform: scale(1.03);
}
  
.time {
    margin: 0;
    width: 20px;
    height: auto;
}
  
.mins {
    margin: 0;
    padding: 0;
    display: inline;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #8afa8a;
    position: relative;
    bottom: 0.3rem;
}
  
.description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.2px;
    color: var(--heading-color);
    padding: 10px;
    border-top: 2px solid var(--heading-color);
}