@font-face {
    font-family: 'Inter';
    src: url('../resources/font/Inter_28pt-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../resources/font/Inter_28pt-Medium.ttf') format('truetype');
    font-weight: 500; /* Medium */
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../resources/font/Inter_28pt-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../resources/font/Inter_28pt-SemiBold.ttf') format('truetype');
    font-weight: 600; /* SemiBold */
    font-style: normal;
}
h1,h2,h3,h4,h5,h6,p,a{
    margin-bottom: 0;
}

/* Base styles for desktop (default) */
h1 {
    font-size: 3.91vw; /* 75px */
}
h2 {
    font-size: 2.34vw; /* 45px */
}
h3 {
    font-size: 1.8vw; /* 35px */
}
h4 {
    font-size: 1.6vw; /* 30px */
}
h5 {
    font-size: 1.35vw; /* 26px */
}
h6 {
    font-size: 1.04vw; /* 20px */
}
p {
    font-size: 0.94vw; /* 18px */
}
.regular {
    font-family: 'Inter';
    font-weight: 400; /* Regular */
}
.medium {
    font-family: 'Inter';
    font-weight: 500; /* Medium */
}

.bold {
    font-family: 'Inter';
    font-weight: bold; /* Bold */
}

.semiBold {
    font-family: 'Inter';
    font-weight: 600; /* SemiBold */
}
/* For tablets (768px to 1024px) */
@media (max-width: 1024px) {
    h1 {
        font-size: 4rem;
    }
    h2 {
        font-size: 3rem;
    }
    h3 {
        font-size: 2.4rem;
    }
    h4 {
        font-size: 2.2rem;
    }
    h5 {
        font-size: 2rem;
    }
    h6 {
        font-size: 1.8rem;
    }
    p {
        font-size: 1.4rem;
    }
}

/* For mobile phones (up to 767px) */
@media (max-width: 767px) {
    h1 {
        font-size: 4rem;
    }
    h2 {
        font-size: 3rem;
    }
    h3 {
        font-size: 2.4rem;
    }
    h4 {
        font-size: 2.2rem;
    }
    h5 {
        font-size: 2rem;
    }
    h6 {
        font-size: 1.8rem;
    }
    p {
        font-size: 1.4rem;
    }
}