*{
    margin: 0;
    padding: 0;
}

/*------HEADER---------*/
#header{
    display: flex;
    justify-content: space-between;
    margin-top:-100px;
    padding: 20px 10px;
    font-size: 24px;
    position: fixed;
    width: 95%;
    background-color:white;
    font-family: "Kode Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}
#nav{
    display: flex;
}
#nav ul{
    display: flex;
    list-style-type: none;
}
#nav ul li{
    padding: 0 15px;
    text-align: center;
}
#nav ul li a{
    text-decoration: none;
    color: black;
}
#nav ul li:hover{
    background-color:gray;
}
#nav ul li a:hover{
    color: white;
}
#logo{
    display: flex;
}
#logo a{
    text-decoration: none;
    color: none;
    display: flex;
    color: black;
}
#logo p{
    padding-left: 10px;
    font-weight: 800;
}
#logo img{
    width: 32px;
    height: auto;
}
/*--------MAIN---------*/
main{
    margin: 100px auto;
    display:flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}
h1{
    font-size: 48px;
    font-family: "Kode Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}
.subheading{
    font-size:32px;
    text-align: center;
}
quote{
    text-align: center;
}
/*About us - main section*/
.about{
    padding: 20px;
    width: 80%;
    min-width:500px;
    display:flex;
    flex-direction: column;
    align-items: center;
}
.about img{
   width: 100px;
   height: auto;
}
.about-snippet{
    margin: 10px;
    padding: 10px 0px;
    display:flex;
    justify-content: space-around;
    width: 100%;
}
.snippet-text{
    width: 80%;
}
/*home - buttons*/
.button{
    padding:10px 20px;
    margin: 10px;
    font-size: 24px;
    border-radius: 10px;
}
.button:hover{
    background-color:rgb(36, 34, 34);
    border: 1px solid white;
    color: white;
    cursor: pointer;
}
/*MAKE YOUR OWN*/
.make-your-own{
    padding: 20px;
    display:flex;
    flex-direction: column;
    align-items: column;
    text-align: center;
}
.make-your-own iframe{
    margin: 15px;
}
/*LEARN MORE*/
.learn-more h1{
    text-align: center;
}
.learn-more .cards{
    margin: 15px 0px;
    display:flex;
    justify-content: space-evenly;
    width: 100%;
}
.learn-more .card{
    border: 1px solid black;
    margin: 0 5px;
    display:flex;
    flex-direction: column;
    align-items: center;
}
.learn-more .card .title{
    font-size: 32px;
    padding: 15px 2px;
    width: 100%;
    background-color: lightgray;
    text-align: center;
    font-weight: 700;
}
.learn-more .card img{
    width: 50%;
    height: auto;
    margin: 0 auto;
}
.learn-more .card .description{
    padding: 20px;
}
.learn-more button{
    margin: 10px auto;
}
/*--------FOOTER--------*/
footer{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items: center;
    background-color: lightgray;
    padding:40px 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;

    margin-bottom: -30px;


}
footer ul{
    list-style-type: none;
    display: flex;
    justify-content: space-around;
}
footer ul li{
    padding: 10px;
}
footer ul li a{
    text-decoration: none;
    color: black;
}
.footer-top{
    display:flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}
.credits ul{
    display:flex;
    flex-direction: column;
    line-height: 1em;
}
.credits{
    margin-top: 30px;
}
.credits a{
    text-decoration: underline;
}
/*---------KAUSES PAGE---------*/
.kauses.cards{
    display:flex;
    width: 100%;
    flex-wrap: wrap;
}
.kauses .card{
    width: 30%;
    display:flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    margin: 0 auto;
}
.kauses .card img{
    width: 100%;
}
.kauses .card a{
    text-decoration: none;
    color: black;
    font-family: "Kode Mono", monospace;
    font-weight: 800;
    font-size: 30px;
}
.kauses .card a p{
    margin-top: -25px;
}
.kauses .card:hover{
    border: 1px solid lightgray;
    border-radius: 10px;
}
