
body {
    background-color: #fff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: Roboto,Arial,Helvetica,system-ui,sans-serif;
  }
  
  .container {
    text-align: center;

  }
  
  .logo {
    max-width: 50%;
  }

  .buttons {
    margin-block-start: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    @media screen and (max-width: 580px) {
        flex-direction: column;
        align-items: center;
    }
  }

  header {
    width: 100%;
    padding-block: 15px;
  }

  header img {
    width: 70px;
  }
  
  header .container {
    width: 100%;
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
  }

  .buttons a {
    color: white;
    background-color: #000091;
    border-radius: 4px;
    padding-block: .357143rem;
    padding-inline: 1.78571rem;
    font-family: Roboto,Arial,Helvetica,system-ui,sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .3s cubic-bezier(.17,.67,.67,1.35);
    display: block;
    width: fit-content;
  }
  
  .buttons a:hover {
    background-color: #00003e;
  }

  .main-grid {
    grid-template-columns: 1fr min(1660px, 100% - 2.28571rem) 1fr;
    column-gap: 1.14286rem;
    max-width: 1920px;
    margin: auto;
    display: grid;
    position: relative;
  }

  .main-grid>* {
    grid-column: 2;
  }

  .inner-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.14286rem;
    display: grid;
  }

  h1 {
    font-size: 30px;
    color: #000091;
  }

  .content {
    max-width: 600px;
  }

  .bow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
  }

  .bow svg {
    fill: #009fe4;
  }
  