p {
    font-family: 'Nunito Sans', sans-serif;
}

h1 {
    font-size:70px;
    margin-bottom: 0px;
    font-family: 'Nunito Sans', sans-serif;
}

h2 {
    font-family: 'Nunito Sans', sans-serif;
}

a {
    text-decoration: none;
    color:black;
}

ul{
    list-style-type: none
}

body {
    margin:0;
    background-color:#F0F1F5
}

#sideNavigation li:hover {
    color:#009688;
}

.source {
    width:80px;
    height:80px;
    border-radius: 109px;
    background: #E6E7EE;
    box-shadow: 6px 6px 12px #b8b9be, -6px -6px 12px #ffffff !important;
    border:1px solid #F0F1F5 !important;
}

.source:hover {
    background: linear-gradient(145deg, #ffffff, #d8d9dd);
    cursor:pointer;
}

.button {
    box-shadow: 3px 3px 6px #b8b9be,-3px -3px 6px #fff;
    border-radius:10px;
    border:1px solid #F0F1F5 !important;
    font-weight:bold;
    padding:10px;
    width:fit-content;
    font-weight:400;
}

.button:hover {
    background: linear-gradient(145deg, #ffffff, #d8d9dd);
    color:#009688;
    cursor:pointer;
}

.neomorphButton{
    box-shadow: 6px 6px 12px #b8b9be, -6px -6px 12px #ffffff !important;
    font-family: 'Nunito Sans', sans-serif;
    border:1px solid #F0F1F5 !important;
    border-radius:20px;
}

#logo {
    font-weight:bold;
    pointer-events: none;
}

#logo:hover {
    background: linear-gradient(145deg, #ffffff, #d8d9dd);
}

.navtings {
    display:flex;
    gap: 30px;
}

.navtings div {
    height: fit-content;
    padding: 20px;
}

.navtings div:hover {
    cursor:pointer;
    color:#009688;
}

.queryBox {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border:1px solid #D1D2D6 !important;
    border-radius: .55rem;
    padding: 1rem 1.5rem;
    height: 16px;
    box-shadow: inset 2px 2px 5px #b8b9be,inset -3px -3px 7px #fff !important;
    font-family: 'Nunito Sans', sans-serif;
}

.pink {
    color:#009688;
}

#topNavigation {
    font-family: 'Nunito Sans', sans-serif;
    display:flex;
    justify-content:space-between;
    height:90px;
    width:100%;
    margin:0;
    padding-top:30px;
}

#mainarea {
    width:100%;
    text-align:center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 80vh;
    margin-top:50px;
}

#mainContent {
    width:100%;
    font-family: 'Nunito Sans', sans-serif;
}

#sources {
    margin-bottom:80px;
    display:flex;
    justify-content:center;
    flex-wrap: wrap;
    gap: 30px;
}

#sources img {
    width: 60px;
    margin-top: 10px;
}

.codeFrame{
    margin-bottom:50px;
    width:100%;
    height:300px;
    border-radius:10px;
    border:1px solid black;
}

#apiKey:hover {
    color:#009688;
    cursor:pointer;
}


.modal {
  background-color: #F0F1F5;
  position: relative;
  z-index: 3;
  width: 350px;
  padding: 50px;
  border-radius:10px;
}


#modalBG {
    display:none;
    z-index:2;
    width:100%;
    height:100%;
    background-color:rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    position: fixed;
    justify-content: center;
    align-items: center;
}


input {
    width:100%;
    border:1px solid #D1D2D6 !important;
    padding:7px;
    border-radius:7px;
    outline:none;
    box-shadow: inset 1px 1px 3px #b8b9be,inset -1px -1px 3px #fff !important;
}

textarea {
    border:1px solid #D1D2D6 !important;
    padding:7px;
    border-radius:7px;
    outline:none;
    box-shadow: inset 1px 1px 3px #b8b9be,inset -1px -1px 3px #fff !important;
    height:100px;
    width:100%;
    resize: none;
}

#registerModal {
    display:none;
}

#contactModal {
    display:none;
}

#donateModal {
    display:none;
}

#paypal {
    width: 100px;
  height: 40px;
  background-color: #2196F3;
  border-radius: 7px;
  border: 1px solid #2196F3;
  color: white;
  font-weight: bold;
}

#paypal:hover {
    cursor:pointer;
}

.closeBtn {
    top: 0px;
    right: 0px;
    position: absolute;
    padding: 14px;
    font-size: 24px;
    padding-right: 18px;
}

.closeBtn:hover {
    cursor:pointer;
}

.msgBox {
    display:none;
    margin-top: 10px;
  border: 1px solid black;
  border-radius: 6px;
  padding: 10px;
  font-family: arial;
  font-size: 13px;
}


#logo2 {
    font-weight:bold;
    pointer-events: none;
    padding: 20px;
    font-size:30px;
}

#mobileHeader {
    background-color:#F0F1F5;
    border-bottom:2px solid #CACBD0;
    display:none;
    width: -moz-available;
  top: 0px;
  padding: 40px;
  justify-content: space-between;
}

#mobileMenu {
    transition: right 0.2s linear;
    display:none;
    right: -500;
    border-left: 1px solid #CACBD0;
    height: 100%;
  width: 60%;
  background-color: #F0F1F5;
  position: absolute;
  font-size: 25px;
  padding-left: 40px;
  font-family: 'Nunito Sans', sans-serif;
}

#mobileButtons {
    margin-top:60px;
}

#mobileButtons button{
    margin: 10px;
    font-size: 25px;
    padding: 10px;
}

.visibleMenu {
    right:0 !important;
}
#mobileWrapper {
    display:none;
    overflow: hidden;
    height: 100%;
    position: fixed;
    width: 100%;
    top: 0px;
}

@media (max-width: 780px) {
    #close1 {
        font-size:40px;
    }
    #close2 {
        font-size:40px;
    }
    #mainarea {
        margin-top: 200px;
    }
    .homeMainArea {
        margin-top:100px !important;
    }
    #mobileWrapper {
        display:block;
    }
    .queryBox {
        height:unset;
    }
#mobileHeader {
    display:flex;
}
#mobileMenu {
    display:block;
}
#sideNavigation {
    display:none;
}
#topNavigation {
    display:none;
}
}
