
/* Palette
#0077B6
#00B4D8
#90E0EF
#ADEBF4
#FDFD96
*/
/*Break points for responsiveness across devices 600px, 601px, 768px, 992px, 1200px*/
@media screen and (max-width: 600px) {
  body {
    width: 100%
  }
}
@media screen and (max-width: 601px) {
  body {
    width: 100%
  }
@media screen and (max-width: 768px) {
  body {
    width: 100%
  }
}
@media screen and (max-width: 992px) {
  body {
    width: 100%
  }
}
@media screen and (max-width: 1200px) {
  body {
    width: 100%
  }
}
}
body { 
  font-family: 'Courier New', Courier, monospace;
  background: #ADEBF4;
  margin: 0;
  box-sizing: border-box;
  background-size: cover;
  width: 100%;
}
h1 {
    font-size: 34px;;
}
h2 {
    font-size: 30px;;
}
h3 {
    font-size: 26px;;
}
h4 {
    font-size: 24px;;
}
p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0077B6;
    color: white;
    padding: 30px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-size: cover;
}
#header h1 {
    margin: 0;
}
#nav {
    display: flex;
    gap: 15px;
}
#nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
    list-style: none;
}
#nav ul li {
    display: inline;
}
#nav a:hover {
    text-decoration: underline;
}
li img {
    width: 450px;
    border-radius: 5px;
    margin-top: 10px;
}
#about {
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background-color: #FDFD96;
    background-size: cover;
  }
#about-profile {
  text-align: center;
  min-width: 350px;
}
.fa {
    font-size: 50px;
    padding: 7px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    color: white;
    background-color: gray;
}
.fa:hover {
    color: black;
    background-color: #ddd;
}
#about h2 {
    margin-top: 0;
}
#about p {
    line-height: 1.6;
    color: #333;
}
#about img {
    width: 150px;
    border-radius: 50%;
    margin-right: 20px;
    align-items: center;
}
#education-skills {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    background: #f5f581;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#education-skills h3 {
    margin-top: 0;
    margin-left: 20px;
}
#projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
#projects a, #about a {
    background-color: #0077B6;
    color: rgba(255, 255, 255, 0.886);
    text-decoration: none;
    font-weight: bold;
    justify-content: center;
    padding: 5px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
    list-style: none;
    font-size: 18px;
    font-weight: bold;
  }
#projects a:hover, #about a:hover {
    color: white;
    background-color: #0056b3;
}

#projects ul {
  list-style-type: none;
  padding: 0;
  width: 80%;
}
.project-details {
  background-color: #90E0EF;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background-size: cover;
}
.project-details:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.project-details h3 {
  margin-top: 0;
}

#contact {
  padding: 20px;
  background-color:#ddd;
  background-size: cover;
}
.contact-form {
  max-width: 500px;
  margin: 50px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
}

.contact-form h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #555;
  font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box; 
}

.form-group textarea {
  resize: vertical; 
}

.contact-form button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}
#footer {
  text-align: center;
  padding: 20px;
  background-color: #0077B6;
  color: white;
  position: relative;
  bottom: 0;
  background-size: cover;
}
#footer p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.886);
}
#footer a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
#footer a:hover {
  text-decoration: underline;
}
