/* styles.css */
@font-face {
    font-family: 'Bebas-Regular';
    src: url('Bebas-Regular.ttf') format('truetype'); /* Ensure the path is correct */
    font-weight: normal;
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Bebas-Regular', sans-serif; /* Ensure the font-family name is correct */
    background-color: #ffffff;
}

.container {
    text-align: center;
}

.logo {
    width: 50%;
    height: auto;
}

h1 {
    margin: 20px 0 0;
    font-size: 4vw; /* Responsive font size */
    color: #333;
    letter-spacing: 0.4vw; /* 10% of the font size */
}

a {
    text-decoration: none; /* Remove underline */
    color: inherit;
}

@media (max-width: 768px) {
    h1 {
        font-size: 8vw; /* Adjust font size for smaller screens */
        letter-spacing: 0.8vw; /* 10% of the font size */
    }

    .logo {
        width: 70%; /* Adjust logo width for smaller screens */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 10vw; /* Further adjust font size for very small screens */
        letter-spacing: 1vw; /* 10% of the font size */
    }

    .logo {
        width: 90%; /* Further adjust logo width for very small screens */
    }
}
