body{
    font-family: 'Poppins', sans-serif;
    margin: 0px;
    padding: 0px;
    background-color: #cbf6fd14;
    color: #2f2c41;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Roboto', sans-serif;
}

button{
    border-radius: 5px;
    border: solid 1px #f48183;
    padding: 5px;
    font-size: 16px;
    font-weight: 600;
    margin: 5px;
    background-color: #f48183;
    color: white;
    cursor: pointer;
}

select{
    border-radius: 5px;
    border: solid 1px #f4f4f4;
    padding: 5px;
    font-size: 15px;
    margin: 5px;
    background-color: white;
    font-family: 'Poppins', sans-serif;
    color: #8b8b8b;
}

#topbar-container{
    align-items: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center;
    width: 100%;
    padding: 0;
    position: fixed;
}

#topbar-main-container{
    align-items: center;
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 2px 1px -1px rgba(0,0,0,.12);
    display: -webkit-flex;
    display: flex;
    height: 80px;
    
    width: 100%;
    z-index: 1;
    justify-content: space-between;
}

#topbar-main-container button{
    margin-right: 30px;
}

#logo-container {
    align-items: center;
    display: -webkit-flex;
    display: flex;
    height: 100%;
    margin-left: 20px;
    width: 120px;
}

#logo-container img{
    height: 100%;
    width: 100%;
}

#menu-items-container a{
    text-decoration: none;
    margin-right: 30px;
    color: #2f2c41;
}

#menu-items-container a:hover{
    color: #47acc3;
    
}

#footer-container{
    background-color: white;
    padding: 20px 50px;
    border-top: 1px solid #f4f4f4;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#footer-container a{
    text-decoration: none;
    color: #2f2c41;
}

.page-title-container{
    padding: 100px 0px 30px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f5fdff;
    background-color: #47acc3;
    margin-bottom: -2px;
}

.page-title-container h1{
    color: white;
}

.page-title-container h2{
    color: white;
    margin-top: 0px;
}

.page-title-container  p{
    color: white;
    font-size: 14px;
}

.page-container{
    min-height: 95vh;
}

input{
    border-radius: 5px;
    border: solid 1px #f4f4f4;
    padding: 5px;
    font-size: 15px;
    margin: 5px;
    background-color: white;
    font-family: 'Poppins', sans-serif;
}

.button-container{
    margin-top: 20px;
}

.footer-socials-logo{
    height: 30px;
}

#not-found-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.not-found-icon{
    font-size: 100px;
    color: #f48183;
    margin-top: 100px;
}

#not-found-link{
    text-decoration: none;
    color: #f48183;
}

#footer-socials-container{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

