﻿html, body {
    background: #041017;
    color: white;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.space {
    margin: 0 auto;
    padding-inline: 10%;
    width: 100%;
    box-sizing: border-box;
}

a.space {
    display: inline;
    text-decoration: none;
    text-align: center;
    padding-bottom: 10%;
}

    a.space h2 {
        display: inline;
        margin: 0;
    }

.backgroundScroll {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("img/bg.jpg");
    color: #013253;
}

header {
    margin-top: 8%;
    margin-bottom: 8%;
}

#logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    min-width: 300px;
    margin: 0 auto;
}

#tagLine h1 {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 5vw;
    margin: 10vw;
    font-weight: 900;
    color: #00ADEF
}

.featureGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 10vw;
    justify-content: center;
    width: 100%;
    margin-top: 200px;
    margin-bottom: 100px;
}

.gridItem {
    font-size: 1vw;
}

    .gridItem img {
        width: 10vw;
        height: auto;
    }

#privacyPolicy {
    text-align: center;
    padding-bottom: 5%;
}
#pLink {
    text-decoration: none;
    color: #00ADEF;
    font-size: clamp(16px, 5vw, 32px);
    font-weight: bold;
    transition: color 0.3s ease;
}

    #pLink:hover {
        color: white;
    }
#links {
    text-align: center;
    align-items: center;
}
    #links a {
        text-decoration: none;
    }

    #links p {
        margin: 0;
        color: #00ADEF;
        text-align: center;
    }

#contactInfoFooter {
    display: flex;
    align-content: start;
    background-color: white;
}

.contGridContactInfo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: left;
    width: 100%;
}

.gridItemContactInfo {
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: start;
}

    .gridItemContactInfo h1 {
        margin-top: 10px;
        padding-top: 10px;
    }

.contact-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 20px;
}

.contact-info, .newsletter {
    width: 45%;
    padding: 10px;
    box-sizing: border-box;
}

    .contact-info ul {
        list-style: none;
        padding: 0;
    }

    .contact-info li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

        .contact-info li img {
            margin-right: 10px;
            width: 20px;
        }

.contContactInfo {
    display: flex;
    flex-direction: column;
    width: 500px;
}

.contactInfoItem {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contactInfoIcon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

    .contactInfoIcon img {
        width: 100%;
        height: 100%;
    }

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    font-size: 1em;
}

#footer {
    width: 100%;
    background: white;
    text-align: center;
    font-size: 0.8vw;
    color: black;
}

.verifiedSuccessfully {
    margin-top: 20vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    text-align: center;
    font-size: 2vh;
}
