* {
    padding: 0;
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    box-sizing: border-box;
}

#header {
    height: 100vh;
    width: 100%;
    background-image: url(image/home.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 45px;
    padding-left: 4%;
    padding-right: 45%;
}

.logo {
    color: #f9004d;
    font-size: 35px;
    letter-spacing: 0.5px;
    cursor: pointer;
}

span {
    color: #f9004d;
}

nav ul li {
    list-style-type: none;
    display: inline-block;
    padding: 10px 25px;
}

nav ul li a {
    color: #3f3034;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}

nav ul li a:hover {
    color: #f9004d;
}

.content {
    position: absolute;
    top: 50%;
    left: 8%;
}

#contact1 {
    color: #f9004d;
    font-size: 40px;
    margin: 20px 20px 20px 20px;
}

h1 {
    color: #f9004d;
    margin: 20px 0px 20px;
    font-size: 75px;
}

h3 {
    color: rgb(3, 3, 3);
    font-size: 20px;
    margin-bottom: 50px;
}

h4 {
    color: rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    font-size: 20px;
}

#about {
    width: 100%;
    padding: 100px 0px;
    background-color: #ffffff;
}

#about img {
    height: auto;
    width: 430px;
}

#about-text {
    width: 550px;
}

#main {
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#about-text h2 {
    color: #f9004d;
    font-size: 75px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

#about-text h5 {
    color: rgb(0, 0, 0);
    letter-spacing: 2px;
    font-size: 22px;
    margin-bottom: 25px;
    text-transform: capitalize;
}

#about-text p {
    color: rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 45px;
}

#skills {
    width: 100%;
    padding: 100px 0px;
    background-color: #ffffff;
}

#skills img {
    height: auto;
    width: 430px;
}

#skills-text {
    width: 550px;
}

#skills-text h2 {
    color: #f9004d;
    font-size: 55px;
    text-transform: capitalize;
    margin-bottom: 10px;
    text-align: center;
}

#skills-text h5 {
    color: rgb(0, 0, 0);
    letter-spacing: 2px;
    font-size: 22px;
    margin-bottom: 25px;
    text-transform: capitalize;
}

input[type=text],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ff125d;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
}

input[type=submit] {
    background-color: #f9004d;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

label {
    color: #f9004d;
}

input[type=submit]:hover {
    background-color: #d80447;
}

.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    margin: 30px 30px 0px 30px;
}

footer {
    position: relative;
    background: #e7e6e6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0px 30px 0px 30px;
}

footer p {
    color: #ff125d;
    font-size: 17px;
    width: 500px;
    text-align: center;
    line-height: 26px;
}