/* General styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.header-text h1 {
    font-size: 48px;
    margin: 0;
}

.header-text p {
    font-size: 24px;
    margin-top: 10px;
}

/* About section */
#about {
    background-color: #f4f4f4;
    padding: 50px 20px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.about-container img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
}

.about-text {
    max-width: 500px;
}

.about-text h2 {
    font-size: 36px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
}

/* Extra Info Section */
#extra-info {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.extra-info-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styling */
.info-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 200px;
    margin: 20px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 20px;
    margin: 10px 0;
}

.info-card p {
    font-size: 16px;
    color: #555;
}


/* Hobbies section */
#hobbies {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.hobbies-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.hobby {
    width: 30%;
    padding: 20px;
    transition: transform 0.3s ease;
}

.hobby img {
    width: 100%;
    height: auto;
}

.hobby:hover {
    transform: scale(1.05);
}

/* Skills section */
#skills {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.skills-container {
    max-width: 700px;
    margin: 0 auto;
}

.skill {
    margin-bottom: 20px;
}

.progress-bar {
    background-color: #e0e0e0;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    background-color: #4CAF50;
    height: 100%;
}

/* Contact Section */
#contact {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

input, textarea {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #555;
}
.custom-link {
    color: white;        /* Sets the link color to white */
    font-size: 1.5em;   /* Adjusts the font size to match h2 (which is typically 1.5em or 24px) */
}

/* Go to w3schools for the colors and fonts  */
/* Make sure to put it in sections  */
