:root {
    --primary: #266dcb;
}

@font-face {
    font-family: 'Clear Sansz';
    src: url('fonts/ClearSanz-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #001646;
    font-family: 'Clear Sansz', sans-serif;
}

.container {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
}

h1 {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

h1 img {
    width: 2rem;
    height: 2rem;
}

p {
    text-transform: uppercase;
    font-size: 15x;
    font-weight: 400;
    margin-bottom: 20px;
}

.progress {
    height: 25px;
    width: 100%;
}

.progress-bar {
    background-color: var(--primary);
}

.countdown {
    display: flex;
    justify-content: space-around;
    color: #fff;
    font-weight: 100;
}

.timer {
    text-align: center;
    margin-left: 2px;
    margin-right: 2px;
    font-weight: 600;
}


.social-buttons {
    size: 3rem;
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.social-buttons a {
    display: inline-block;
    margin: 0 10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 30px;
    transition: background-color 0.3s ease;
}

.social-buttons a:hover {
    background-color: var(--primary);
}