@font-face {
    font-family: 'Garet';
    src: url('../font/GaretVariable-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #EEF9EF;
    margin: 0;
    font-family: 'Garet', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    width: 100%;
    height: 70px;
    background-color: #1D1D1B;
    display: flex;
    align-items: center;
    padding-left: 20px;
    box-sizing: border-box;
    border-bottom: 4px solid #92D697;
}

.navbar .logo {
    height: 31px;
}

.content {
    flex: auto;
    padding: 20px;
    box-sizing: border-box;
    max-width: 900px;
    margin: 0 auto;

}

.title {
    text-align: center;
    font-size: 31px;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 100hv;
}

.subtitle {
    font-size: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.causes-list {
    padding-left: 20px;
    list-style-type: square;
    margin-bottom: 70px;
}

.causes-list li {
    font-size: 19px;
    margin-bottom: 20px;
}

.link {
    display: block;
    margin-top: 20px;
    text-align: center;
    font-size: 20px;
    color: #1F8DB4;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.link i {
    margin-right: 5px;    
    font-size: 25px;    
    color: #1D1D1B;    
}

.link-text {
    color: #1F8DB4 !important;
    text-decoration: none;
}

.link-text:hover {
    text-decoration: underline;
}

.footer {
    width: 100%;
    height: 50px;
    background-color: #1D1D1B;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    box-sizing: border-box;
    border-top: 4px solid #92D697;
}

.footer p {
    color: #92D697;
    font-size: 14px;
    text-align: center;
}

.footer .footer-link:hover {
    text-decoration: underline;
}

@media (max-width: 805px) {
    .footer {
        justify-content: center;
        padding-right: 0px;
    }
    .subtitle {
        text-align: center;       
    }
}