
@font-face {
    font-family: 'JostBold';
    src: url('fonts/Jost-700-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'JostBook';
    src: url('fonts/Jost-400-Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


body {
    margin: 0;
    font-family: 'JostBook', Arial, sans-serif;
    background: #ffffff;  
    color: #252323;       
    text-align: center;
    overflow-x: hidden;
}

.container {
    max-width: 700px;
    margin: 20px auto; 
    padding: 10px;
    box-sizing: border-box;
}


.hero {
    width: 80%;          
    max-width: 376px;    
    height: auto;
    margin: 0 auto 0 auto; 
    display: block;
}


h1 {
    margin: 0 0 10px 0;   
    font-size: 30px;
    font-family: 'JostBold', Arial, sans-serif;
}


.tagline {
    font-size: 30px;
    margin: 0 0 15px 0; 
    color: #252323;
    font-family: 'JostBold', Arial, sans-serif;
}


.contact a {
    color: #252323;
    font-family: 'JostBook', Arial, sans-serif; 
    text-decoration: none;
    font-weight: normal;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #51A493;
    text-decoration: underline;
}


.contact p {
    margin: 5px 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .container {
        margin: 15px auto;
        padding: 8px;
    }

    .hero {
        max-width: 300px;
        width: 90%;
        margin-bottom: 8px;
    }

    h1 {
        font-size: 26px;
    }

    .tagline {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        max-width: 200px;
        width: 90%;
        margin-bottom: 6px;
    }

    h1 {
        font-size: 22px;
    }

    .tagline {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .contact p {
        font-size: 12px;
    }
}
