:root{
    --main-font-color: #141c3a !important;
}
  
html{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #eeeeee;
    font-family: 'Oswald', sans-serif;
}
body{
    width: 98%;
    height: 97%;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.1);
}
main{
    width: 100% !important;
    height: 100% !important;
}

/*Flex*/
.flex{
    display: flex !important;
}
.row{
    flex-direction: row;
}
.column{
    flex-direction: column;
}
.justify-center{
    justify-content: center;
}
.align-items-center{
    align-items: center;
}
.align-content-center{
    align-content: center;
}

/*Flex*/

/*Typografy*/
.font-c-main{
    color: var(--main-font-color) !important;
}
.font-s-1{
    font-size: 1em;
}
.font-s-1-5{
    font-size: 1.5em;
}
.font-s-2{
    font-size: 2em;
}
.font-s-3{
    font-size: 3em;
}
.font-s-4{
    font-size: 4em;
}
.font-s-5{
    font-size: 5em;
}

.font-w-1{
    font-weight: 100 !important;
}
.font-w-2{
    font-weight: 200 !important;
}
.font-w-3{
    font-weight: 300 !important;
}
.font-w-4{
    font-weight: 400 !important;
}
.font-w-5{
    font-weight: 500 !important;
}
.font-w-6{
    font-weight: 600 !important;
}

/*Typografy*/

/*Margin*/
.m-0{
    margin: 0 !important;
}
.my-0{
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.mx-0{
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.m-1{
    margin: 5px !important;
}
.my-1{
    margin-top: 5px  !important;
    margin-bottom: 5px  !important;
}
.mx-1{
    margin-left: 5px  !important;
    margin-right: 5px  !important;
}
.m-2{
    margin: 10px !important;
}
.my-2{
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}
.mx-2{
    margin-left: 10px !important;
    margin-right: 10px !important;
}
/*Margin*/

/*Media*/
.img-responsive{
    max-width: 100%;
    height: auto;
}
/*Media*/


/*Personalized*/
.avatar{
    width: 250px;
}
/*Personalized*/