
/*----THIS IS SHOULD BE INCLUDED IN ALL PAGES-----*/

/*
    This file includes classes used by all files.
    For example, the ability to make flexed columns
    and rows.

    It also includes the font family for everything.
*/

*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.row-f{ /*---the 'f' stands for fixed, so the flex direction does not change based on a media query---*/
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.col-f{ /*---the 'f' stands for fixed, so the flex direction does not change based on a media query---*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.row{
    margin-top: 5% 0;
    display: flex;
    justify-content: space-between;
}
.float-container{
    position: absolute;
    transform: translate(-50%,-50%);
    display: block;
}
