body {
    font-family: 'Jost', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #00BFD8;
    color: white;
    text-align: center;
}

nav {
    background-color: black;
    padding: 15px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #00BFD8;
}

nav ul li a i {
    margin-right: 5px;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

.title {
    font-size: 50px;
    margin: 0;
    font-weight: 400;
}

.subtitle {
    font-size: 20px;
    margin-top: 10px;
}

h1 {
    font-size: 50px;
    font-weight: normal;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.text {
    max-width: 500px;
    font-size: 21px;
    line-height: 1.6;
}

.image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
}

.contact {
    margin-top: 20px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    width: 300px;
    height: 10;
    margin: auto;
    border-radius: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 20px 0;
    border: none;
     box-sizing: border-box;
    border-bottom: 2px solid white;
    background: transparent;
    color: white;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background: white;
    color: #00bcd4;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.socials {
    margin: 20px 0;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: white;
    color: #00bcd4;
    font-size: 24px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.icons a:hover {
    background: #fff;
    color: #007bb5;
    transform: scale(1.1);
}

footer {
    margin-top: 20px;
}

.container {
    margin-bottom: 400px;
}
