body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url(background.jpg);
    background-attachment: fixed;
}

nav 
{
    justify-content: space-between;
    position: static;
    align-items: center;
    top: 0;
    left: 0;
    display: flex;
    z-index: 1;
    box-shadow: 0 3px 5px rgba(0, 0, 0.2, 0.1);
    padding: 0px, 2px, 0px, 2px;
    background-color: white;
}
nav h1 {
    color: blue;
    padding-left: 50px;
    font-family: monospace;
    font-size: 30px;
    letter-spacing: 1px;
}
nav a {
    color: blue;
    transition: 0.3s;
    text-decoration: none;
}
nav ul {
    display: flex;
    gap: 1.9rem;
}
nav ul li {
    font-family: monospace;
    font-size: 15px;
    padding-right: 23px;
    list-style: none;
}

#about {
    background-size: contain;
    border-radius: 30px;
}
.program {
   display: flex;
   justify-content: center;
   align-items: center;
   margin: auto;
   gap: 2rem;
   max-width: 68rem;

}
.program img {
    height: 50%;
    width: 50%;
}
#title {
   border-radius: 20px;
   box-shadow: 5px 5px 10px grey;
   padding-left: 20px;
   padding-right: 20px;
   background-color: aliceblue;

}
.program h2 {
    font-family: monospace;
    font-size: 25px;
}
.program h3 {
    text-align: center;
    font-family: monospace;
    font-size: 45px;
    letter-spacing: 2px;
}
div .title {
   border-radius: 20px;
   box-shadow: 5px 5px 10px grey;
}
div p {
    text-align: center;
    font-family: fantasy;
}

.skills {
  max-width: 68.75rem;
  margin: auto;
  text-align: center;
  margin-top: 2.5rem;
}
.skill-head {
    text-align: center;
    font-family: cursive;
    margin-bottom: 30px;
    font-size: 30px;
    padding-top: 30px;
}
.icon {
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 11px;
    box-shadow: 0 3px 10px grey;
    padding: 40px;
    margin: 40px;
}
.skill-wrapper img {
    padding: 0.75rem;
}

footer {
    position: static;
    bottom: 0;
    width: 100%;
    min-height: auto;
    background-color: rgb(113, 166, 246);
    display: flex;
    justify-content: center;
}
footer h4 {
    color: black;
    text-align: center;
    font-family: monospace;
    font-size: 20px;
}
.container {
    width: 500px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 5px;
    cursor: pointer;
    font-size: 2rem;
}

.icons img:hover {
    color: gray;
    scale: 1.3;
    transition: 0.5s all ease-in-out;
}

article {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 60px 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.card-primary {
    display: grid;
    place-items: center;
}

footer ul {
    text-align: center;
    display: flexbox;
    word-spacing: 3px;
}
footer ul li {
    list-style: none;
}
