@import url('./bootstrap/bootstrap-grid.min.css');
@import url('./bootstrap/bootstrap-utilites.min.css');
@import url('./fonts.css');

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: whitesmoke;
    --color-text: #323232;
    --color-link: var(--color-text);
    --color-link-hover: #B4B4B4;
    --header-height: 60px;
    --font-family: Montserrat, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --wrap-width: 1200px;
}

address {
    font-style: normal;
}

button,
body {
    font-family: var(--font-family);
}

a {
    color: var(--color-link);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .9rem;
}

ul {
    list-style-type: none;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    min-height: 100svh;
}

.container-fluid {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    max-width: 1630px !important;
}

.useless-trash {
    background-color: var(--color-bg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: fadeOut 2s ease-out forwards;
    z-index: 10001;
}

.useless-trash.hidden {
    display: none;
}

.useless-trash__header {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.useless-trash__title {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    line-height: 2;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}