:root{
    --blue: #082567 ;
    --orange: #D9644A ;
}

body,html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
  }

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin: 4rem 0 4rem 0;

}

.cta-section a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: var(--orange);
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.1);
    outline: 5px solid white;
    border-radius: 8rem;
    width: 32rem;
    height: 4.8rem;
    box-shadow:  8px 6px 10px rgba(0, 0, 0, 0.08);
    transition: background-color 0.4s ease, color 0.4s ease;
}

.cta-section a:hover {
    color: white;
    background-color: var(--blue);
    transform: translate();
    outline: transparent;
}

.container h2 {
    text-align: center;
    color: var(--blue);
    font-weight: bold;

    font-size: 25px;

}

.container h1 {
    font-size: 25px;
    text-align: center;
    color: var(--blue);
    font-weight: lighter;
    padding: 1rem 0 0 0;
}

.container p {
    font-size: 1.25rem;
    line-height: 2;
}

@media (max-width: 994px) {
    .cta-section a {
        padding: 3rem 2rem;
        width: 100%;
        font-size: 2rem;
    }

    .buttons {
       margin: 2rem 0;
    }
}

@media (max-width: 776px) {
    .buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .cta-section a {
        padding: 0.5rem 0;
    }
}