@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --text-color: #e8dbc5ff;
    --background-color: #fff4e9ff;
}

body {
    font-family: "Oswald", sans-serif;
    color: var(--secondary-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

nav {
    background-color: var(--primary-color);
    color: var(--text-color);
    height: 5vh;
    display: flex;
    align-items: center;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    width: 100%;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
}

.main-content {
    display: flex;
    flex-direction: column;
    margin-top: 2%;
    align-items: center;
    height: 95vh;
    width: 100%;
    overflow-x: auto;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.profile-pic {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
}

.title {
    font-size: 4rem;
    margin: 0 0 20px 0;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--background-color);
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px 0;
    width: 90%;
    max-width: 600px;
}

.card .content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.card .subtitle {
    margin: 0;
    font-size: 60px;
    font-weight: bold;
}

.card .description {
    font-size: 18px;
    margin: 20px 0;
}

.skills-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.skills-list {
    list-style-type: none;
    padding: 0;
    width: 45%;
}

.skills-list li {
    font-size: 18px;
    margin: 5px 0;
}