@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,700;0,900;1,200;1,300;1,400;1,700;1,900&display=swap');

html, body, h1, h2, h3, h4, h5, h6, p, a, ul, ol, table, input, select, textarea, button{
    font-family: 'Poppins', sans-serif;
    color: white;
}

body{
    min-height: 100vh;
    background-color: #00162a;
    display: flex;
    justify-content: center;
    flex-direction: column;
}


.bottone{
    background-color: #B23600;
    border-color: #B23600;
    color: #fff;
    cursor: pointer;
    color: #fff;
    background-color: #EC6608;
    border-color: #EC6608;
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 38px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    min-width: 180px;
    height: 40px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    outline: 0;
    -webkit-transition: background-color 0.3s ease, border-color 0.2s ease, -webkit-box-shadow 0.3s ease;
    transition: background-color 0.3s ease, border-color 0.2s ease, -webkit-box-shadow 0.3s ease;
    transition: background-color 0.3s ease, border-color 0.2s ease, box-shadow 0.3s ease;
    transition: background-color 0.3s ease, border-color 0.2s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;

    text-decoration: none;
}

.text-orange{
    color: #ff6a00;
}

.text-blue {
    color: #002854;
}

.header{
    background-color: white;
    text-align: center;
    padding: 2rem;
}

.main{
    flex: 1;
}

.footer{
    padding: 2rem;
    background-color: white;
}

.footer-container{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
}

input[disabled]{
    opacity: 0.3;
}

.uk-button-primary{
    background-color: #002854;
}

.uk-countdown-number{
    font-size: 3rem;
}

.uk-countdown-label {
    font-size: 11px;
}

.uk-countdown-separator {
    font-size: 1rem;
}

a.card-container{
    color: red;
    display: block;
}

a.card-container:hover{
    text-decoration: none;
    color: white;
}

.card{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    font-size: 3rem;
}