/* Reset some default styles to ensure consistent rendering */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Define dark theme styles for the body and header */
body {
    background: rgb(63,103,97);
    background: linear-gradient(0deg, rgba(63,103,97,1) 0%, rgba(88,165,166,1) 100%);
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

header {
    background-color: #393D76;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%
}

/* Style the navigation menu */
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 20px;
    transition: color 0.3s;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition-duration:0.7s;
}

nav ul li:hover {
  color: #ffe68a;
  font-size: 15px;
  transition-duration:0.7s;
}


.main {
  margin: auto;
  width: 22%;
  padding: 1%;
  text-align: center;
  border-radius: 10px;
  background: rgba(88,165,166,0.2);
}

.main h1 {
    font-size: 45px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-shadow: 1px 1px 2px black;
}

.main p {
  font-size: 25px;
  font-weight: bold;
  text-shadow: 1px 1px 2px black;
}

.work {
  margin: auto;
  width: 50%;
  padding: 1%;
  text-align: center;
  border-radius: 10px;
  background: rgba(88,165,166,0.2);
}

.work h2{
  font-size: 30px;
  font-family: 'Courier New', monospace;
  text-shadow: 1px 1px 2px black;
}

.work h3{
  font-size: 25px;
  font-family: 'Courier New', monospace;
  text-shadow: 1px 1px 2px black;
}

.work p{
  font-size: 20px;
  font-family: 'Courier New', monospace;
  text-shadow: 1px 1px 2px black;
}

.work h4{
  font-size: 20px;
  font-family: 'Courier New', monospace;
  text-shadow: 1px 1px 1px black;
}

.work figcaption{
  font-size: 15px;
  font-family: 'Courier New', monospace;
  text-shadow: 0.5px 0.5px 0.5px black;
}

.cta-button {
    display: inline-block;
    background-color: #393D76;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    transition-duration:0.7s;
}

.cta-button:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
    -webkit-transition-duration: 0.5s; /* Safari */
    transition-duration: 0.5s;
}

.workSection img{
  border: 3px solid #417b7d;
}

#welcome p{
  margin: auto;
  width: 30%;
  padding: 1%;
  text-align: center;
  border-radius: 10px;
  background: rgba(88,165,166,0.2);

  font-size: 15px;
  font-weight: bold;
  text-shadow: 1px 1px 1px black;
}
