p{
    color: black;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1em; 
}

body{
    margin: 0;
    background-image: url('../Background_Home.jpg');
    background-repeat: no-repeat;
    background-attachment:fixed;
    background-size:cover;
    background-position: center;
    font-weight: 300;
}

.container{
    width: 80%;
    margin: 0 auto; 
}

header{
    background:rgb(84, 84, 84)
}

header::after{
    content: '';
    display: table;
    clear: both;
}

nav{
    float:left;
}

nav ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

nav li{
    display: inline-block;
    margin-left: 3vw;
    padding-top: 1.5vw;
    padding-bottom: 1.5vw;
}

nav a{
    color:white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.5vw;
}

nav a:hover{
    color: #000;
}

.cards {
    margin: 0 auto;
    max-width: 1500px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows:auto;
    gap: 20px;
    font-family: sans-serif;
    padding-top: 30px;
}

.cards * {
    box-sizing: border-box;
}

.card__image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-top: 2px solid #333333;
    border-right: 2px solid #333333;
    border-left: 2px solid #333333;
}
    

.card__content {
    line-height: 1.5;
    padding: 15px;
    font-size: 1em;
    color: black;
    background: #fafafa;
    border-right: 2px solid #333333;
    border-left: 2px solid #333333;
}

.card__content > p:first-of-type {
    margin-top: 0;
}

.card__content > p:last-of-type {
    margin-bottom: 0;
}


.card__info {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555555;
    background: #eeeeee;
    font-size: 0.8em;
    border-bottom: 2px solid #333333;
    border-right: 2px solid #333333;
    border-left: 2px solid #333333;
}

.card__info i {
    font-size: 0.9em;
    margin-right: 8px;
}

.card__link {
    color: #64968c;
    text-decoration: none;
}

.card__link:hover {
    text-decoration: underline;
}
}