* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff6d6;
    margin: 0px;
    padding: 0px;
}
header {
    margin: 0;
    padding: 0;
}

.navbar {
    margin-top: 0;
}


h1, h2, h3 {
    font-family: serif;
    color: #A3331C;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 1.5em;
}
.navbar
{
    display: flex;
    background-color: black;
    justify-content: space-around;
    align-items: center;
    padding: 15px 20px;
    position: relative;
    margin-top: 0px
}
.navbar a {
    color: white;
    text-decoration: none;
    padding: 5px 15px;
    transition: color 0.3s ease;
}
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e2b258;
    border-bottom: 2px solid #e2b258;
}
/* .logo {
    font-family: serif;
    font-size: 2.1em; 
    font-weight: 900; 
    color: #fff; 
    letter-spacing: 1px; 
} */
.logo {
    font-family: serif;
    font-size: 2.1em;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    line-height: 1;
}


a {
    text-decoration: none;
    color: #A3331C;
}
.cardclass{
    /* border: 2px solid black; */
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-around;
    height: 200px;
    
    
}
.divs
{
    border: 2px solid black;
    border-radius: 5px;
    width: 150px;
    height: 40px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: larger;
    color: white;
        background-color: #A3331C;


}
.cardclass a{
    color: white;
    text-decoration: none;
}
.cardclass  :hover{
    background-color: rgb(212, 41, 47);
}