 .btn {
            /*display: inline-block;*/
            display: flex;
        align-items: center;
        justify-content: center; 
        gap: 7px;
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 0.7rem 1.5rem;
            background-color: #FCC726;
            color: black;
            font-weight: bold;
            border-radius: 4px;
            transition: background-color 0.3s ease;
            text-decoration: none;
            margin-top: 2%;
     
        }

        .btn:hover {
            background-color: #FCC726;
        }