* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    margin: 0;
    background-color: rgb(228, 219, 201);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.center-container{
    text-align: center;
    width: 100%;
    padding: 2em 0em;
}

h1{
    color: #495c41;
    text-align: center;
    font-family: ms madi;
    font-size: 12ch;
    padding-top: 0.5em 0;
    align-items: center;

}

h2{
    text-align: center;
    margin: 2em 0;
    color: #495c41;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 4ch
}

h3{
    background-color: #c6bdae;
    padding: 1em;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
    margin-top: 10em;
    margin-bottom: 0;
}

h3 a{
    padding: 0.5em 1em;
    text-decoration: none;
    transition: color 0.3s;
    color: #495c41;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 3.5ch
}

a:hover{
    text-decoration: underline;
    color: #77966b;
}

h4{
    color: #495c41;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 130%;
    padding-left: 2em;
}

p{
    text-align: left;
    color: #495c41;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 100%;
    padding-left: 3em;
}

footer{
    color: #495c41;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    font-size: 0.9em;
    text-align: center;
    padding-bottom: 1em;
    align-self: center;

}