/*--- Font Import ----*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;400;600;800;900&display=swap');
/*--- Component Imports ----*/
@import url('components/grid.css');
@import url('components/buttons.css');
@import url('components/forms.css');
@import url('components/select.css');
@import url('components/alerts.css');
@import url('components/profile.css');
@import url('components/nav.css');
@import url('components/modal.css');
@import url('components/post.css');

/*---- Genric Reset Styles ----*/
:root {
    --text-main: #555555;
}

* {
    font-family: 'Nunito', sans-serif;
    box-sizing: border-box;
    color: var(--text-main);
    word-wrap: break-all;
    word-break: break-word;
    white-space: wrap;
}

body {
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: 12pt;
}

main {
    width: 100%;
    padding: 0;
    margin: 0;
}

footer {
    padding: 30px;
    width: 100%;
    background: #1c1d21;
    margin: 0;
}

/*---- Misc styles and overrides ----*/
.registration {
    background: url('../images/reg.jpg');
    background-color: #66DEFF;
    background-blend-mode: luminosity;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    position: fixed;
    background-size: cover;
}

#moreInformationSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    background-color: #1c1d21;
    min-height: 120vh;
    padding: 50px 0;
}

.text-center {
    text-align: center;
}

footer h2 {
    text-align: center;
    font-size: .8rem;
    color: #fff;
}

.min-height-full {
    min-height: 85vh;
}

.avatar,
.post-avatar {
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
}

.post-avatar img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width:750px) {

    .registration,
    .hide-mobile {
        display: none;
    }

    #registerForm {
        width: 100%;
        background: url('../images/reg.jpg');
        background-color: #66DEFF;
        background-blend-mode: luminosity;
        background-position: center center;
        background-repeat: no-repeat;
    }

    #registerForm form {
        width: 90%;
        margin: 0 auto;
        background: white;
        border-radius: 5px;
    }
}

.pure-table {
    width: 100%;
    margin-top: 30px;
}

.caption{
    font-size:.75rem;
    color:#555555;
    padding:10px 0;
    font-style: italic;
}

*.hide {
    display: none;
}

*.full-width {
    width: 100% !important;
}
