@import url('https://fonts.cdnfonts.com/css/cascadia-code');

body {
    margin: 0;
    padding: 0;
}

.top-ribbon
{
    display: flex;
    padding: 0rem 4rem;
    align-items: center;
    gap: 0.75rem;
    align-self: stretch;
    background: #6DC2FF;
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
    width: 100vw;
    box-sizing: border-box;
}

.top-ribbon .logo
{
    flex: 1 0 0;
    color: #000;
    font-family: "Cascadia Code", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.top-ribbon .site-status {
    color: #000;
    font-family: "Cascadia Code", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.what-we-do {
    max-width: 700px;
    margin: 10rem auto 0 auto;
    padding: 2.5rem 3rem;
    background: rgba(210, 234, 254, 0.403);
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(109, 194, 255, 0.25), 0 1.5px 8px 0 rgba(30, 80, 160, 0.10);
    text-align: center;
    backdrop-filter: blur(18px) saturate(200%);
    -webkit-backdrop-filter: blur(18px) saturate(200%);
    border: 2px solid rgba(109, 194, 255, 0.35);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlideIn 1s ease-out 0.3s forwards;
}

.what-we-do h1 {
    font-family: "Cascadia Code", sans-serif;
    color: #1a4c6e;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.what-we-do p {
    font-family: "Cascadia Code", sans-serif;
    color: #000;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}