﻿@import url('https://fonts.cdnfonts.com/css/poppins');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.divHeader {
    height: 50px;
    min-height: 50px;
    background-color: rgb(42, 46, 78);
}

.divContent {
    flex: 1;
    overflow: auto;
}

.divFooter {
    height: 50px;
    min-height: 50px;
    background-color: rgb(190, 190, 190);
    display: flex;
    align-items: center;
    justify-content: center;
}