@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300&display=swap');

@font-face {
    font-family: CormorantUnicase;
    src: url('../fonts/CormorantUnicase-Light.ttf');
}

@font-face {
    font-family: Roboto;
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: Montserrat;
    src: url('../fonts/Montserrat-Bold.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
}

/* force scrollbar */
html {
    overflow-y: scroll;
    position: relative;
}

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

h1 {
    color: #1C263E;
}
.pageTitleFirst{
    font-weight: 400;
    margin-bottom: 20px;
}
.pageTitleSecond{

}
.textFirst, label{
    color: #4a5158;
    font-weight: 500;
    font-family: 'Source Sans Pro', sans-serif;
}
.textSecond{

}
.round_picture{
    border-radius: 30px;
}
a {
    text-decoration: none;
    color: #363636;
}

p, a {
    font-family: Roboto;
}

#principal_header {
    background-color: #a6574a;
    width: 85%;
    margin-left: 15%;
    height: 150px;
    position: absolute;
    top: 0;
}

main {
    display: flex;
    flex-direction: row;
    background-color: #FFFFFF;
    min-height: 100%;
    padding-top: 150px;
    padding-bottom: 60px;
    margin-bottom: 140px;
}

#content {
    padding: 16px;
    width: 85%;
    margin-left: 15%;
}

#principal_footer {
    background-color: #a6574a;
    margin-left: 15%;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 0px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
}

#logo_container {
    /* background-color: #9f0502; */
    color: #ffffff;
}

#logo {
    color: #ffffff;
    font-family: CormorantUnicase;
    padding: 8px;
    text-align: center;
    margin-bottom: 20px;
}

#principal_menu ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
}

#principal_menu li {
    padding: 8px;
    color: #FFFFFF;
}

#principal_menu li a {
    color: #FFFFFF;
}

#left-side {
    width: 15%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: auto;
    background-color: #acc4b4;
}

#search_bar {
    margin: 8px;
    padding: 8px;
    border-radius: 20px;
}

#categories_menu ul {
    list-style: none;
    width: 100%;
}

#categories_menu li {
    padding: 8px;
    padding-left: 16px;
    font-size: 16px;
    width: 100%;
    background-color: #1C263E;
}

#categories_menu li:hover {
    background-color: #495163;
}

#categories_menu a {
    color: #FFFFFF;
    width: 100%;
    height: 100%;
}

#categories_menu a:hover {
}



.round_button {
    border-radius: 10px;
    width: 150px;
    display: inline-block;
    padding: 10px;
    margin: 20px;
    color: #FFFFFF;
    text-align: center;
    background-color: #a6574a;
    cursor: pointer;
}

.screen_divided{
    width: 100%;
    display: flex;
    flex-direction: row;
}

.half_screen_container {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.half_screen_content {
    width: 100%;
}
