/* styles.css */

/***** Dark theme *****/
.card {
    color: #fff;
    background-color: #505050;
}

body {
    color: #fff;
    background-color: #000;
}


/***** Light theme *****/
/*
.card {
    color: #505050;
    background-color: #f9f9f9;
}

body {
    color: #505050;
    background-color: #fff;
}
*/


/**************************************************************************/
/*  Standard Stuff  */
.header h1 {
    font-family: 'special_eliteregular';
    font-weight: normal;
    font-size: 40px;
    text-align: center;
    margin: 5px;
}

.header h2 {
    font-family: 'special_eliteregular';
    font-weight: normal;
    font-size: 32px;
    text-align: center;
    margin: 5px;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.card {
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px auto;
    max-width: 400px;
    min-height: 90vh;
}

@font-face {
    font-family: 'patua_oneregular';
    src: url('fonts/patuaone-regular-webfont.woff2') format('woff2'),
         url('fonts/patuaone-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'special_eliteregular';
    src: url('fonts/specialelite-webfont.woff2') format('woff2'),
         url('fonts/specialelite-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.header {
    text-align: center;
}

/*************************
.header h1 {
    font-family: 'special_eliteregular';
    font-weight: normal;
    font-size: 35px;
    text-align: center;
    margin: 5px;
}
***************************/

.header h3 {
    /* font-family: 'Raleway', sans-serif; */
    font-weight: lighter;
    font-size: 20px;
    text-align: center;
    margin: 5px;
}

.header img {
    height: 200px;
    width: 200px;
    border: 0px solid #999;
    border-radius: 50%;  /* make image circular */
}

@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
.header img {
    max-width: 100%;
    width: 200px;
    border: 0px solid #999;
    border-radius: 50%;  /* make image circular */
}
}

.buttons-large {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.buttons-large img {
    height: 60px;
}

.contact-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.contact-icons a {
    margin: 0 10px;
}

.contact-icons img {
    width: 40px;
}

.website-btn {
    display: block;
    text-align: center;
    background-color: #007bff;
    padding: 10px;
    border-radius: 5px;
    margin: 20px auto;
    text-decoration: none;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons a {
    margin: 0 12px;
}

.social-icons img {
    width: 35px;
}

/* Media Queries for Responsiveness */

@media (max-width: 600px) {
    .card {
        padding: 15px;
    }

    .header img {
        max-width: 100%;
    }

    .contact-icons img {
        width: 50px;
    }

    .website-btn {
        padding: 8px;
    }

    .social-icons img {
        width: 42px;
    }
}

.btn-tap-to-container {
    display: flex;
    align-items: center;
    padding-left: 25px;
    XXXborder: 1px solid #999;
    width: 290px;
    margin: 0 auto;
    padding-bottom: 6px;
    padding-top: 6px;
}

.btn-tap-to-container a {
    color: inherit;
    text-decoration: none;
}

.btn-tap-to-container img {
    max-width: 100%;
    height: 50px;
    /*display: block;*/ /* Remove any default spacing below the image */
    /*margin: auto;*/ /* Center the image horizontally */
    XXXborder: 1px solid #286;
    padding-top: 3px;
}

.text-container {
    text-decoration: none;
}

.text-container {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    margin-left: 20px; /* Adjust margin as needed */
    XXXborder: 1px solid #862;
    text-decoration: none;
}

.text-row-tap {
    margin-bottom: 0px; /* Adjust spacing between rows as needed */
    align-items: center;
    XXXborder: 1px solid #01f;
    color: #cdaf9a;
    font-size: 16px;
    padding: 5px;
}

.text-row-main {
    margin-bottom: 0px; /* Adjust spacing between rows as needed */
    XXXborder: 1px solid #01f;
    font-size: 18px;
}


var isMobile = {
    Android: function() {
        return navigator.userAgent.match(/Android/i);
    },
    BlackBerry: function() {
        return navigator.userAgent.match(/BlackBerry/i);
    },
    iOS: function() {
        return navigator.userAgent.match(/iPhone|iPad|iPod/i);
    },
    Opera: function() {
        return navigator.userAgent.match(/Opera Mini/i);
    },
    Windows: function() {
        return navigator.userAgent.match(/IEMobile/i);
    },
    any: function() {
        return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows());
    }
};

if(isMobile.any()){
    // Mobile!
} else {
    // Not mobile
}

if(isMobile.any()){
.header h1 {
    font-family: 'patua_oneregular';
    font-weight: normal;
    font-size: 40px;
    text-align: center;
    margin: 5px;
    color: #ffffff;
}
}