@import url('https://fonts.googleapis.com/css2?family=Paytone+One&display=swap');


/* 
yellow color - #D19204
#D29500
#D19305
*/

h2{
    color: #D19204 !important;
    font-family: "Paytone One", sans-serif;
    font-size: 50px!important;
    font-weight: 400;
    font-style: normal;
    
}





h3{
    color: #D19305 !important;
    font-family: "Paytone One", sans-serif;
    font-size: 35px!important;
    font-weight: 400;
    font-style: normal;
}

.font-family{
    font-family: "Paytone One", sans-serif;
    font-weight: 400;
}

.button {
    display: inline-block; /* Allows padding and background color */
    padding: 10px 40px; /* Adjust padding as needed */
    background-color: black; /* Change to your desired background color */
    color: white; /* Text color */
    text-decoration: none; /* Remove underline */
    border: none; /* Remove border */
    outline: 2px solid black; /* Add an outline with the same color */
    outline-offset: 4px; 
    border-radius: 0; /* No rounded corners */
    font-size: 16px; /* Adjust font size as needed */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
}

.button:hover {
    background-color: #D19204; /* Darken the color on hover */
}
