@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');

:root {
    --theme-primary: #125EA9;
    --theme-secondary: #01a3dc;
    --text: #09131a;
    --inv-text: #d8e6ef;
}
html[data-bs-theme="dark"] {
    --theme-primary: #01a3dc;
    --theme-secondary: #125EA9;
    --text: #d8e6ef;
    --inv-text: #09131a;
}

* {
    font-family: "Roboto Slab", serif;
}

.footer {
    background-color:#004c99;
    color: #fff;
    padding: 20px 0;
    height: 100px;
    width: 100%;
    margin-top: auto;
}

.bg-theme-primary {
    background-color: var(--theme-primary);
}

.bg-theme-secondary {
    background-color: var(--theme-secondary);
}

.text {
    color: var(--text);
}

.text-inverse {
    color: var(--inv-text);
}

.social-icons {
    font-size: 35px;
    color: white;
    transition-duration: 0.3s;
}

.social-icons:hover {
    color: #ffdd00;
}

body {
    background-color: #e7e7e7 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}