@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@600;900&display=swap');

:root {
    font-size: 62.5%;
}

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

body {
    background-color: black;

}

header {
    text-align: center;
    color: #E1E1E6;
    font-family: Mulish, sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
}

header h1 {
    color: #02799D;
    font-family: Mulish, sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    padding-bottom: 1.5rem;
}

section {
    max-width: 1024px;
    margin-inline: auto;
}

 main {
    width: fit-content;
    margin-top: 4rem;
    display: grid;
    row-gap: 4.4rem;
    margin-inline: auto;
}

div.card {
    width: 28.5rem;
    border-radius: 8px;
    border: 2px solid #323238;
    background: #202024;
    align-items: center;
}

img {
    border-radius: 8px;
    width: 28rem;
}

div h2 {
    color: #E1E1E6;
    font-family: Mulish, sans-serif;
    font-size: 2.8rem;
    font-weight: 900;

    padding: 1.4rem 2rem 0;
}

div p {
    font-size: 2rem;
    color: #C4C4CC;
    font-family: Mulish, sans-serif;
    font-weight: 600;

    padding: 2.4rem 3.2rem 3.2rem;
}

@media (min-width: 1024px) {

    main {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        
        gap: 36px; 
    }
}