* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fira Sans', sans-serif;
}

header {
    width: 100%;
    height: 100vh;
    background: url("./index.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.8;
}

nav {
    width: 100%;
    height: 15vh;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

.logo {
    width: 25%;
    text-align: center;
}

.menu {
    width: 50%;
    display: flex;
    justify-content: space-around;
}

.menu a {
    width: 50%;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.typing {
    color: red;
}

main {
    width: 100%;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

section h3 {
    font-size: 40px;
    font-weight: 200;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px black;
}

section h1 {
    margin: 30px 0 20px 0;
    font-size: 40px;
    font-weight: 500;
    text-shadow: 2px 1px 5px black;
    text-transform: uppercase;
}


/*cngnow*/

section button.donate {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    border: 1px solid whitesmoke;
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
}