* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(106, 106, 106);
}

.content {
    margin: 0 auto;
    max-width: 1300px;
}

.container {
    background-color: #EBFEFF;
}

.hero-section {
    display: flex;
    height: 50vh;
    align-items: center;
    justify-content: center;
}

.text-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(85, 118, 147);
}

.text-content h1 {
    font-size: 2rem;
    font-weight: bold;
    color: black;
}

.text-content p {
    max-width: 500px;
    margin-bottom: 2rem;
}

.text-content a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: rgb(85, 118, 147);
    padding: 10px 30px;
    border-radius:50px;
}

.image-wrapper {
    width: 500px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
}

.about-me-container {
    display: flex;
    background-color: white;
    justify-content: center;
    padding: 100px 0;
    gap: 50px;
}

.about-me-wrapper {
    max-width: 500px;
}

.about-me-wrapper h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(85, 118, 147);
}

.about-me-wrapper h1 {
    font-size: 2rem;
    font-weight: bold;
    color: black;
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.icon-container {
    display: flex;
    justify-content: center;
    gap:   50px;
    max-width: 1200px;
}

.icon-container img {
    width: 400px;
    height: auto;
}

.projects-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-direction: column;
    padding: 50px 0;
}

.cards-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    width: 300px;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card-image-wrapper img {
    width: 100%;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.card h3, .card p {
    padding: 10px 0;
}

.projects-container h1 {
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 50px;
}

.cards p {
    font-size: 25px
}