@import url('https://fonts.googleapis.com/css2?family=Engagement&family=Great+Vibes&family=Honk&family=Oooh+Baby&display=swap');

header{
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
    position: relative;
    justify-items: center;
    margin: 2em;
}
/*Used flexbox stackes title and buttons in column and centers them and they fill the screen*/
nav{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
    
}
/*styling the individual buttons*/
nav a{
    display: block;
    margin: 8px auto;
    padding: 10px;
    width: 80%;
    background-color: #B37159;
    border-radius: 5px;
    text-decoration: none;
    color: black;
}
/*Changing background color when hovering over a button for ease of use and accessibilty*/
a:hover{
    background-color: #B4AFAF;
}
/*Styling the cards in center of page at smaller screen size*/
.cards{
    display: flex;
    justify-content: center; 
    gap: 2em;                 
    flex-wrap: wrap;          
    padding: 2em;
    
}
.card{
    background-color: #B37159;
}
img{
    width: 18em;
    height: 20em;
}
.big{
    display: none;
}
.skills{
    margin: 2em;
}
.label{
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
    position: relative;
    font-size: 30px;
    margin-top: 2em;
}
.about{
    margin-left: 2em;
    margin-right: 2em;
}
.contact{
    margin-left: 2em;
    margin-right: 2em;
}

@media (min-width: 600px){
.small{
    display: none;
}
.big{
    display: inline;
}
}
