
/*Navigation bar*/
nav {
    padding: 4px;
}
nav ul {
    margin-left: 0px;
}
nav ul li {
    display: inline;
    margin: 0px;
}

/*ID's*/
/*header id's*/
#navmain {
    position: absolute;
    top: 0%;
    left: 0%;
    li {
        font-size: large;
    }
    ul {
        text-align: center;
    }
    ul li a {
        color: rgb(255, 255, 255);
        background-color: rgba(12, 129, 129, 0.764);
        text-decoration: none;
    
        border-right-color: black;
        border-right-width: 2px;
        border-right-style: solid;
        
        padding: 5px;
        margin: 0px;
    }
    ul li a:hover {
        background-color: #00ffdd;
    }
}

/*main id's*/
#home {
    width: 50%;
    text-align: justify;
    h2 {
        background-color: #007bff9d;
        padding: 5px;
    }
    img {
        right: 2%;
    }
}
#about {
    width: 50%;
    text-align: justify;
    h2 {
        background-color: #007bff9d;
        padding: 5px;
    }
}
#services {
    h2 {
        background-color: #007bff9d;
        padding: 5px;
    }
}

/*footer id's*/
#footerheading {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    text-decoration-line: underline;
    text-shadow:  2px -2px 3px rgba(255, 255, 255, 0.504);
    text-decoration-thickness: 2px;
    font-variant: small-caps;
    font-size: 40px;
    margin-top: 5px;
}
#navcontact {
    position: relative;
    left: 4%;
    bottom: 5%;
}
#leavequery {
    border: 2px solid rgba(24, 213, 207, 0.932);
    border-radius: 10px;
    
    text-align: center;
    padding: 10px 20px;
    position: absolute;
    right: 8%;
    bottom: 7%;

    h2{
        margin-bottom: 5%;
        margin-top: 0px;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        text-align: left;
    }
}
#emailbox {
    width: 230px;
}
#massagebox {
    width: 230px;
    height: 50px;
}
#button {
    margin-top: 2%;
    align-items: center;
    text-align: center;
}

/*Classes*/
.navmain {
    transition: transform 0.4s ease-in-out;
}
.navmain:hover {
    font-size: x-large;
}


.contacticons {
    scale: 0.7;
    transition: transform 0.2s ease-in-out;
}
.contacticons:hover {
    transform: scale(1.2);
}

/*Elements*/
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;

    text-align: center;
    align-items: center;

    background-color:rgba(12, 129, 129, 0.51);
    color:antiquewhite;

    padding: 5px;
}
a {
    text-decoration: none;
}
body {
    font-size: 100%;
    background-image: url("Images/BGImage.png");
    background-size: cover;
}
h1 {
    font-family: Calibri, 'Trebuchet MS', sans-serif;
    text-decoration: underline;
    text-shadow:  6px -6px 5px black;
    text-decoration-thickness: 2px;
    font-size: 600%;
    font-variant: small-caps;
}
main {
    margin-top: 18%;
}
footer {
    background-color:black;
    color:white;

    position: relative;
    width: 100%;

    padding-bottom: 2%;
    bottom: 0;
    left: 0;
}