@import url("https://rsms.me/inter/inter.css");

@font-face {
    font-family: "Canela Deck";
    src: url("./fonts/CanelaDeck-Regular-Web.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "GT America";
    src: url("./fonts/GT-America-Standard-Regular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "GT America";
    src: url("./fonts/GT-America-Standard-Medium.woff2") format("woff2");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "GT America";
    src: url("./fonts/GT-America-Standard-Bold.woff2") format("woff2");
    font-weight: 700;
    font-display: swap;
}
 
h1.main-header{
    font-weight: bold;
    font-family: -apple-system, "Inter";
    color: #dc3c34;
}

.site-navigation ul li a{
    font-size: 1.5rem;
}

.helping-header{
    text-align: center;
}

.mission-title{
    color: black!important;
}

.mission-paragraph{
    font-size: 1.2rem;
    color: rgb(41, 41, 41);
}


.home-page-welcome:after{
    background-color: white;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}

.insight-tigray-start-container{
    border-bottom: 2px solid black;
}

.area-of-need{
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
}

.area-of-need-header{
    font-size: 1.25rem;
    color: black;
    font-weight: 500;
}

.area-of-need-list-header{
    font-size: 2rem;
    font-weight: bold;
    color: black;
}

.form-control{
    width: 100%;
}

.donate-page-header:after{
    background-color: white!important;
}

.thankyou_message{
    color: black!important;
    opacity: 1!important;
    display: none;
}

.join-message-container{
    /* 100vw includes the scrollbar gutter and overflows the page; 100% doesn't. */
    width: 100%;
    height: 100vh;
    position: absolute;
}

.join-message{
    background: #016114;
    margin-top: 10vh;
    z-index: 99999;
    color: white;
    font-weight: bold;
    /* animation-name: fadeIn;
    animation-delay: 0.3s;
    animation-timing-function: ease-in-out;
    animation-duration: 0.7s;
    animation-fill-mode: forwards; */
    transition-property: opacity;
    transition-delay: 0.5s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
}

.join-message-visible{
    opacity: 1;
}

.join-message-hidden{
    opacity: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    } 
    30% {
        opacity: 1;
    }
    70%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
