@font-face {
    font-family: 'CustomFont';
    src: url('./font.ttf') format('truetype');
    font-weight: 300;

}
body {
    margin: 0;
    font-family: 'CustomFont', sans-serif;
    background: #f4f4f9;
    color: #333;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6,p,a,button{
    font-family: 'CustomFont', sans-serif;
}

header {
    z-index: 100;
    width: 100%;
    height: 80px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    box-sizing: border-box;
}

.mainLogo {
    height: 60px;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: #333;
    text-decoration: none;
    margin-left: 30px;
    position: relative;
    font-size: 1.2em;
}

nav a:hover {
    color: #13dcfe;
}

.menu-icon {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
}

@media (max-width: 600px) {
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
    }

    nav.active {
        display: flex;
    }

    nav a {
        margin: 10px 0;
        text-align: center;
        font-size: 1.5em;
    }

    .menu-icon {
        display: block;
    }
}

button {
    background-color: #13dcfe;
    border: none;
    color: rgb(0, 0, 0);
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    margin: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover {
    background-color: #0ab3c9;
    transform: scale(1.02);
    color: white;
}

footer {
    background-color: rgb(0, 0, 0);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-links,
.footer-contact,
.footer-social {
    margin: 20px 0;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 5px 0;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #13dcfe;
}

.footer-contact p,
.footer-social a {
    margin: 5px 0;
    color: #fff;
}

.footer-contact a {
    color: #13dcfe;
    text-decoration: none;
}

.footer-social a {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-social img {
    height: 30px;
    width: 30px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9em;
}
