  /* Button */
  .btn {
    display: inline-block;
    background-color: #2E86AB;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn:hover {
  color: white;
    background-color: #3DA0D0;
}

body {
            display: flex;
            flex-direction: column;
        }
        
        .content {
            flex: 1 0 auto;
            padding: 20px;
            /* Add your content styles here */
        }