/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Set a background color and font for the entire page */
body {
    background-color:#222b3f;
    color: whitesmoke;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}

.backimage {
    background-image: url('images/moving-sky-with-stars-above-mountains-in-night-time.png');
    background-repeat: no-repeat;
    height: 100vh;
}

/* Style the container */
.container {
    max-width: 100%;
    height: 100vh;
    margin: 0px 150px 0px 150px; 
}

/* Style the header and navigation */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Style the company logo */
.logo img {
    max-width: 200px; /* Adjust the size as needed */
    height: auto;
}

/* Style the tagline */
.tagline h1 {
    font-size: 48px;
    text-align: center;
    margin-left: -30px;
    margin-top: 200px;
}

/* Responsiveness for smaller screens */
@media (max-width: 768px) {
    /* Adjust the logo size for smaller screens */
    .logo img {
        max-width: 75px;
    }

    /* Adjust the tagline font size for smaller screens */
    .tagline h1 {
        font-size: 20px;
    }
}

nav ul {
    list-style: none;
}

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
}

/* Style the hero section */
.hero {
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Style the footer */
.companyinfo h2, h3 {
    color: #f0f0f0;
    font-size: 14px;
    text-align: center;
    margin: 0px;
}

.socialicon span, i, a, a:hover, a:active, a:visited {
    color: #f0f0f0;
    font-size: 12px;
    text-decoration: none;
    justify-content: center;
    /* margin: 0px;   */
}

.contactinfo h5{
    color: #f0f0f0;
    font-size: 12px;
    text-align: center;
    margin: 0px;
}


.companyinfo h6, a, a:hover, a:active, a:visited {
    color: #f0f0f0;
    font-size: 11px;
    text-align: center;
    text-decoration: none;
    margin: 0px;    
}


footer {
    text-align: center;
    /* padding: 20px 0; */

}

.copyright {
    font-size: 12px;
    color: whitesmoke;
    /* text-align: right; */
    margin-top: 180px;
    padding-right: 50px;
}

.copyright h6 {
    font-size: 12px;
    color: whitesmoke;
    text-align: right;
}