.content{
    margin: auto;
    width: 70%;
    font-family: 'Poppins' !important ;
}
html {
    scroll-behavior: smooth;
}

button {
    font-family: 'Poppins' !important ;
}
.accountfornav{
    /* height: 5.6875em; */
    height:0;
}

h1,h2,h3,h4,h5,h6,p{
    color: #242525;
}

p.header {
    text-align: center;
    font-weight: 500;
    font-size: 2.8em;
}

.openlink-img {
    width: 1em;
    height: 1em;
    object-fit: contain; 
    cursor: pointer;
    margin: 0em 0em 0em 0.5em;
}

.more-info-img {
    width: 1em;
    height: 1em;
    object-fit: contain; 
    cursor: pointer;
    margin: 0em 0em 0em 0.5em;
}

p.subheader {
    text-align: center;
}

.primary-button {
    font-family: 'Poppins' !important;
    border-radius: 50px;
    padding: 1em 1.6em;
    text-align: center;
    background-color: #FFB827; /* Solid yellow background */
    border: none;
    color: #242525; /* Default text color */
    display: inline-flex;
    align-items: center;
    gap: 0.625em; /* Adds space between text and icon */
}

.primary-button-icon {
    fill: currentColor; /* Ensures SVG fill color matches the text color */
    width: 1em;
    height: 1em;
}

.primary-button:hover {
    color: #FFB827; /* Changes text color on hover */
    background-color: #242525; /* Changes background on hover */
}

.primary-button:hover .primary-button-icon {
    fill: currentColor; /* Explicitly ensure SVG fill changes on hover */
}

.blue-button {
    background-color: #C9DAF1;
    color: #242525;
    padding: 0.75em 6em; 
    font-size: 1em;
    min-width: 7.5em; 
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    flex-shrink: 0; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    border: none;
    box-shadow: 0 0 0.625em rgba(0, 0, 0, 0.2); 
}

.blue-button:hover{
    background-color: #0656BF;
    color: #F5F7F2;
}

.secondary-button {
    border: 2px solid black;
    color: #242525;
    background-color: transparent;
    padding: 0.625em 1.25em;
    font-size: 1.13em;
    display: inline-flex;
    align-items: center;
    border-radius: 2rem;
  }
  
  .secondary-button:hover {
    /* animation: zoom 0.3s forwards; */
    background-color: #272728;
    color: #F5F7F2;
  }



@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.horizontally-center{
    display: flex;
    justify-content: center;
}

body {
    font-family: 'Poppins' !important ;
    background: #F5F7F2;
    font-size: 16px;
}



/* Media query for tablets */
@media (width <= 1000px) {
    body {
        font-size: 15px;
    }
}

@media (width <= 600px) {
    body {
        font-size: 14px;
    }
    .content{
        width: 85%;
    }
    .secondary-button {
        border: 2px solid black;
        font-size: .9em;
        font-weight: 600;
        border-radius: 2rem;
      }
}

/* Media query for mobile devices */
@media (width <=  480px) {
    .content{
        width: 90%;
    }
}