* {
    padding: 0;
    margin: 0;
}

header {
    position: fixed;
    height: 20%;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background:url(code-1.jpg);
    object-fit: fill;
   }

.title {
    text-align: center;
    font-weight: 200;
    font-size: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    padding: 10px;
}

.nav-bar {
    display: flex;
    justify-content: space-evenly; 
    padding: 40px;
    list-style-type: none;
}

.heading-links {
    text-decoration: none;
    font-size: 25px;
    color: white;
    background:black;
    border: 3px solid white;
    border-radius: .75em;
    padding: 10px 24px;
    transition: all 0.3s ease 0s;
}

.heading-links:hover {
    opacity: 0.75;
    text-decoration: none;
    font-size: 25px;
    color: white;
    background:black;
    border: 3px solid rgb(201, 8, 8);
    border-radius: .75em;
    padding: 15px 36px;
}

.starting-heading {
    text-align: center;
    font-size: 54px;
    color: 	#282828;
    word-spacing: 5px;
}

.paragraph {
   
   background-color: powderblue;
}

.float {
   display: flex;
   justify-content: space-evenly;
}

.info-paragraph {
    height: 200px;
    width: 400px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 21px;
    margin: 20px;
}

table {
    margin: 100px;
    
}

thead {
    font-size: 36px;
    padding: 35px;
    font-weight: 700;
    color: 	#282828;
    font-family: Arial, Helvetica, sans-serif;
}

tbody {
    font-size: 25px;   
}

td {
    padding: 15px;
    text-align: center;
}

.pictures {
    margin-left: auto;
    margin-right: auto;
    border-collapse: serparate;
    border-spacing: .75rem;
}

.spacing {
    padding: 50px;
}

.client-list{
    display: flex;
    justify-content: space-evenly; 
    padding: 70px;
    list-style-type: none;
}

.client-data {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 44px;
    color: 	#282828;
    font-weight: bold;
    opacity: 1;
    transition: all 0.4s ease 0s;
}

.client-data:hover {
    font-size: 50px;
    opacity: 0.75;
}

footer {
    background-color: black;
}








