* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      font-family: sans-serif;
    }

    .container {
      display: flex;
      flex-direction: row;
      height: 100vh;
      width: 100vw;
    }

    .section {
       flex:1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      text-decoration: none;
      transition: flex 0.5s ease;
    }

    a .btn {
        display: inline-block;
        font-family: 'brandon-text';
        font-size: 1em;
        line-height: 1.222222;
        border-radius: 1.61111em;
        padding: 0.77778em 1.4em 0.88889em;
        margin-top:2em;
        background-color: #CD0921;
        border: #CD0921 0.11111em solid;
        color: #fff;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        transition-property: opacity, transform, background-color, border-color, box-shadow;
    }

    .section:hover {
        flex: 1.25;
        opacity: 0.95;
        cursor: pointer;   
    }

    .section:hover .btn {background-color: #930417; border-color:#930417;}

    .section1 { background-color: #4D001B; }
    .section2 { background-color: #093021; }
    .section3 { background-color: #0D1440; }

    a {
        font-family: 'brandon-text', 'helvetica neue', helvetica, arial, sans-serif;
        line-height: 1.142857;
        margin-bottom: 0.6em;       
    }
    a .title {
        font-size:clamp(24px, 3vw, 40px);;
        font-weight: bold;
        text-transform: uppercase;  
        max-width: 28vw;      
    }

    a .part {
        transform: rotate(-4deg);
        font-family: 'biro-script';
        font-size:clamp(16px, 1.5vw, 30px);;
    }

    .section1 .title { color: #F7E1D5;  }
    .section2 .title { color: #FAF6F2; }
    .section3 .title { color: #FAF6F2; }

    .section1 span.title span { color: #CD0921 !important;  }
    .section2 span.title span { color: #D2EDAF !important;  }
    .section3 span.title span { color: #FFF0C2 !important;  }
    

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        height: 100dvh;
      }

      .section {
        min-height: 30dvh;
        width: 100%;        
        padding:2em;
      }
       a .title {
            max-width: 80vw;  
            font-size:1.5rem;
       }
      .section1 {padding-top:100px;}
    }