html, body {
    margin: 0;
    padding: 0;
}

/* Fonts */
.headerTxt{
    font-family: "Orbitron", sans-serif;
    font-size: x-small;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    color: black;
}

.otherTxt{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    color: black;
}

/* Sections */
body{
    text-align: left;
    background-color: white;
}

/* In the Header */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* width: 97%; */
    background-color: white;
    display: flex;
    /* flex-wrap: nowrap; */
    justify-content: space-around;
    padding: 1rem 0;
    align-items: center;
}

#title{
    display: flex;
    align-items: center;
    gap: 10px;
}

h1{
    letter-spacing: 4pt;
}

#title img{
    max-width: 70px;
    height: auto;
}

#tabs{
    display: flex;
    justify-self: right;
    align-items: center;
}

nav{
    display: block;
    float: none;
}

a{
    color: black;
    text-decoration: none;
}

nav a{
    display: inline-block;
    padding-left: 6pt;
    padding-right: 6pt;
    font-size: 1.25rem;
}

.navAHover{
    text-decoration: underline;
    font-weight: bold;
}


/* In the Main */
main{
    margin: 10% 10%;
}

.bodyText{
    margin-left: 5%;
    margin-right: 5%;
}

.snippet{
    display: flex;
    align-items: center;
}

.snippet img{
    max-width: 10rem;
    height: auto;
    margin-right: 3rem;
    /* margin: 0 3rem; */
    float: left;
}

.snippet p{
    flex: 1;
}

/* In the footer */
footer{
    text-align: center;
    height: 200px;
    background-color: rgb(228, 228, 228);
    padding: 20px;
}

  /* .inactive{display: none;} */



