@font-face {
    font-family: 'Motiva Sans';
    src: url('fonts/MotivaSansRegular.woff.ttf') format('truetype');

    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Motiva Sans Medium';
    src: url('fonts/MotivaSansMedium.woff.ttf') format('truetype');

    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Motiva Sans Medium', sans-serif;
    background-color: #2E3440;
    height: 90vh;
}

h1 {
    color: #d8dee9;
    text-align: center;
    font-size: clamp(1.5rem, 5vw, 3rem);
}

p {
    color: #d8dee9;
    font-size: clamp(1rem, 3vw, 2rem);
}

p1 {
    color: black;
    font-size: 15px;
    text-align: left;
}

a {
    color: #b48ead;
}

.grid-container a {
    color: #4c566a;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1vw;
    flex: 0 0 25px;
} 

.grid-item {
    height: 40vh;
    padding: 20px;
    border-radius: 5px;
    justify-content:center;
    align-items: center;
}

.item1 {
    background-color: #d08770;
}
.item2 {
    background-color: #a3be8c;
}
.item3 {
    background-color: #b48ead;
}
.item4 {
    background-color: #ebcb8b;
}
