/* Font Family Implement */
.azeret-mono-uniquifier {
  font-family: "Azeret Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
}
.text-center {
    text-align: center;
}
/* Header Part */
header nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 10px;
}
header nav ul li{
    list-style: none;
}
header nav ul li a{
    text-decoration: none;
    color: rgb(13, 19, 33);
    font-weight: 800;
    font-size: 20px;
}
.btn{
    font-family:"Azeret Mono", monospace;
    font-weight: 400;
    font-size: medium;
    background-color: rgb(4, 11, 24);
    color: rgba(255, 255, 255, 0.903);
    width: 244px;
    height: 60px;
    padding: 17px 24px 17px 24px;
    border: 1px solid rgb(12, 39, 102);
    border-radius: 12px; 
    opacity: 0.8; 
}
.hero-bg {
    background-image: url("../assets/Hero-bg.png");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 550px;
}
.hero-content {
    text-align: center;
    padding: 26px 220px;
}
main{
    margin: 75px;
}
/* Why Development Part */
main .about-dev {
    margin: 50px,100px;
    padding: 40px;
    border-radius: 16px;
    background: rgba(13, 19, 33, 0.02);
}
main .about-dev article {
    background-color: white;
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 15px;
    margin: 32px;
    border: 2px solid whitesmoke;
    border-radius: 15px;
    box-shadow: 5px 5px rgb(243, 242, 239);
}
/* Inspiration Part */
.inspiration{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 10px;
    padding: 15px;
    border: 2px solid whitesmoke;
    border-radius: 15px;
    box-shadow: 5px 5px rgb(243, 243, 239);
    background-color: whitesmoke;
}
.inspiration iframe{
    border: 2px solid aqua;
    border-radius: 20px;
}
/* Target Part */
.target article{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin: 10px;
    padding: 15px;
}
.target article .html {
    margin: 10px;
    padding: 60px 40px 40px;
    border: 2px solid rgb(240, 240, 224);
    border-radius: 15px;
    background-color:rgb(249, 236, 220);
    width: 364px;
    height: 299px;
}
.target article .css {
    margin: 10px;
    padding: 60px 40px 40px;
    border: 2px solid rgb(251, 251, 247);
    border-radius: 15px;
    background-color: rgb(171, 198, 247);
    width: 364px;
    height: 299px;
}
.target article .js {
    margin: 10px;
    padding: 60px 40px 40px;
    border: 2px solid rgb(242, 242, 233);
    border-radius: 15px;
    background-color: rgb(247, 236, 220);
    width: 364px;
    height: 299px;
}
/* Support Part */
#support{
    padding: 64px 48px;
    background-image: url(../assets/handshake.jpg);
    border-radius: 15px;
}
#support p , #support h1 {
    color: white;
    text-shadow: aliceblue;
    font-weight: 300;
}
#support div {
    display: flex;
    gap: 20px;
    justify-content: center;
}
#support div input{
    width: 548px;
    height: 57px;
    border: 2px solid whitesmoke;
    border-radius: 15px;
    text-align: center;
    font-size: medium;
}
/* Footer Part */
footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 75px;
    padding: 15px;
    border: 2px solid whitesmoke;
    border-radius: 15px;
}
footer a{
    text-decoration: none;
}