main {
    margin: 10px;
    padding: 10px;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    min-height: calc(100vh - 62px - 50px);
}

header{
    background-color: blanchedalmond;
    display: flex;
    height: 62px;
    padding: 0 30px;
}

header ul{
    display: flex;
    align-items: center;
    height: 62px;
    justify-content: flex-end;
    gap: 60px;
}

header ul li{
    list-style: none;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 30px;
}

header li a{
    text-decoration: none;
    color: black;
}

nav{
    /*background-color: tomato; */
    /*display: inline-block; */
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

main{
    background-color: aliceblue;
    padding: 20px 20px 60px 20px;
}

#card_cont{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: space-evenly;
}

footer{
    background-color: gray;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    text-align: center;
    line-height: 50px;
}

p#first_paragraph{
    color: black;
}

p#second_paragraph{
    color: brown;
}

p{
    color: blue;
    font-size: 15px;
    font-weight: normal;
}

main  p.blah{
    color: coral;
}