body{
    background-color: #F1ECE5;
}

nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    color: #545454;
    padding: 0 40px;
    border-bottom: 2px solid #5454549b;
    margin: 0 60px;
}

nav a{
    text-decoration: none;
    color: #545454;
    font-weight: normal;
    font-size: 18px;
    font-family: "Poppins", sans-serif;

}

nav h1{
    margin: 0 40px;
    font-size: 36px;
  font-family: "Bebas Neue", sans-serif;
}

main {
    text-align: center;
    color: #BD9E89;
}

section {
    padding: 60px 0 0 0;
}

#projects {
    border-bottom: 2px solid #5454549b;
    width: 80%;
    margin: 0 auto 40px auto;
    padding-bottom: 60px;
    box-sizing: border-box;
    font-family: "Bebas Neue", sans-serif;
    font-size:22px;

}


#Exercises{
    font-family: "Bebas Neue", sans-serif;
    font-size:22px;

}


.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;      
    margin-top: 20px;
}

.card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    background-color: #545454;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
    transform: scale(0.95);
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s;
  box-shadow: 0 8px 5px 0 rgba(0, 0, 0, 0.2), 0 10px 20px 0 rgba(0, 0, 0, 0.19);
}

.card-middle {
    transform: scale(1.05);
    z-index: 2;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #545454;
    color: #ced1d4;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

footer a{
  
  color:#F1ECE5;
  font-weight: bold;
  font-size: 22px;
font-family: "Bebas Neue", sans-serif;


}
