﻿body {
    background-color: #024D99;
    color: #fff;
    font-family: "poppins";
    font-weight: 500;
}

.skip-to-main {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0056b3;
    color: #ffffff; 
    padding: 8px 16px;
    font-size: 16px;
    text-decoration: none;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.skip-to-main:focus {
    transform: translateY(0);
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

.roboto-serif {
    font-family: "Roboto Serif", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

main {
    margin-top: 11rem;
}

.logo {
    background: url('../images/coming-soon.svg') no-repeat 0 0;
    width: 466px;
    height: 359px;
    display: block;
}

h1 {
    font-size: 2.125rem;
    margin-bottom: 1rem;
}

.btn-yellow {
    background-color: #E8C221;
    color: #191919;
}

.btn-yellow:focus-visible {
    outline-color: #fff;
    box-shadow: none;
    outline: solid; 
    outline-width: medium;
}

.btn-yellow:hover,
.btn-yellow:focus {
    background-color: #002742;
    color: #fff;
}

footer {
    background-color: #002742;
    color: #fff;
    font-weight: 200 !important;
}

footer ul {
    margin-bottom: 0;
    padding-left: 0;    
}

footer li {
    list-style: none;
}

footer li a {
    color: #fff;
    text-decoration: none;
}

footer li a:hover {
    text-decoration: underline;
}



@media (min-width: 300px) and (max-width: 991.98px) {
    main {
        margin-top: 2rem;
    }

    .logo {
        background: url('../images/coming-soon.svg') no-repeat 0 0;
        background-size: 300px 231px;
        width: 300px;
        height: 231px;
        display: block;
        margin-bottom: 3rem;
    }

    .intro {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {

    .logo {
        background: url('../images/coming-soon.svg') no-repeat 0 0;
        background-size: 275px 212px;
        width: 275px;
        height: 212px;
    }
    
    .intro {
        width: 95%;
    }
}