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

:root {
    --primary-orange: #ed9042;
    --primary-orange-saturated: #cc752d;
    --light-blue: #459cb7;
    --light-blue-saturated: #287891;
    --dark-text: #333333;
    --white-background: #FFFFFF;
    --light: #eafaff;
}

html, body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
    color: var(--dark-text);
    overflow-y: scroll;
    overflow-x: hidden;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: var(--light-blue-saturated);
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1400px;
    margin: auto;
    padding: 0px 20px;
}


.btn {
    display: inline-block;
    text-decoration: none;
    color: var(--light);
    min-width: 100px;
    padding: 10px 15px;
    text-align: center;
    border-radius: 3px;
}

.btn:hover {
    text-decoration: none;
}

.btn-blue {
    background-color: var(--light-blue);
    transition: background-color 0.2s ease;
}

.btn-blue:hover {
    background-color: var(--light-blue-saturated);
}

.btn-orange {
    background-color: var(--primary-orange);
    transition: background-color 0.2s ease;
}

.btn-orange:hover {
    background-color: var(--primary-orange-saturated);
}

/* Ident */

.ident {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    text-align: center;
    margin-bottom: 12px;
    max-width: 100px;
}

.ident .ident-block {
    align-self: center;
    width: 60px;
    height: 4px;
}

.ident .ident-block-blue {
    background-color: var(--light-blue);
}

.ident .ident-block-orange {
    background-color: var(--primary-orange);
}

.ident .ident-block-white {
    background-color: white;
}


/* @media (max-width: 768px) {

    .container {
        padding: 0px 10px;
    }

} */