@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;1,200&display=swap');

:root {
    --Red: hsl(0, 78%, 62%);
    --Cyan: hsl(180, 62%, 55%);
    --Orange: hsl(34, 97%, 64%);
    --Blue: hsl(212, 86%, 64%);
    --Very-Dark-Blue: hsl(234, 12%, 34%);
    --Grayish-Blue: hsl(229, 6%, 66%);
    --Very-Light-Gray: hsl(0, 0%, 98%);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* font-size: 15px; */
}

body {}

.bigcontainer {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* border: 2px solid green; */

}

.container {
    height: 85%;
    width: 80%;
    /* border: 2px solid red; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* padding: 0 2rem; */
}

.top {
    text-align: center;
    height: 29%;
    width: 74%;
}

.top h1 {
    font-weight: 200;
    font-size: xx-large;
    color: var(--Grayish-Blue);
}

.top span {
    font-size: xx-large;
    font-weight: 600;
    color: var(--Very-Dark-Blue);
}

.top p {
    font-size: 13px;
    font-weight: 400;
    padding: 0rem 12rem;
    color: var(--Grayish-Blue);
}

.bottom {
    width: 74%;
    height: 71%;
    position: relative;
    /* border: 2px solid green; */
    padding: 2rem;
}

.card {
    width: 18rem;
    height: 12rem;
    /* border: 2px solid blue; */
    padding: 1.5rem;
    position: absolute;
    border-top: 4px solid;
    border-radius: 5px;
    box-shadow: 0 0 10px 2px rgb(226, 226, 226);
}

.card img {
    height: 45px;
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
}

.card:nth-child(1) {
    left: 0%;
    top: 50%;
    transform: translateY(-50%);
    border-color: var(--Cyan);
}

.card:nth-child(2) {
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    border-color: var(--Red);
}

.card:nth-child(3) {
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    border-color: var(--Orange);
}

.card:nth-child(4) {
    right: 0%;
    top: 50%;
    transform: translateY(-50%);
    border-color: var(--Blue);
}

.card h3 {
    font-size: large;
    font-weight: 600;
    color: var(--Very-Dark-Blue);
}

.card p {
    font-size: 12px;
    font-weight: 200;
    color: var(--Grayish-Blue);
}

.attribution {
    font-size: 11px;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}