/* General Styles */
body {
    margin: 0;
    font-family: "Roboto Condensed", sans-serif;
    background-color: rgb(34, 34, 34);
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    width: 80%;
    max-width: 1200px;
}

.caption {
    font-size: 1.4rem;
}

.content {
    flex: 1;
    padding: 40px;
}

.profile-pic {
    flex: 1;
    text-align: center;
}

.profile-pic img {
    width: 100%;
    height: 350px;
    width: 350px;
    border-radius: 50%;
    margin-left: 10px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.4rem;
    color: #bb86fc;
    margin-bottom: 30px;
}

.about-me {
    margin-bottom: 30px;
}

.about-me h2 {
    font-size: 1.5rem;
    color: #bb86fc;
    margin-bottom: 10px;
}

/* Button Styles */
.btn {
    background-color: #bb86fc;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.1rem;
    margin: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #3700b3;
}

.btn:active {
    transform: scale(0.98);
}

footer {
    margin-top: 20px;
    color: #bb86fc;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 90%;
    }

    .profile-pic {
        order: -1; /* This moves the image to the top */
    }

    .profile-pic img {
        max-width: 300px; /* Adjust image size for mobile */
    }

    .content {
        padding: 20px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .caption {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .caption {
        font-size: 0.9rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    footer {
        font-size: 0.9rem;
    }
   
}

.contact {
    display: flex;
    flex-direction: column; /* Stacks the paragraphs vertically */
    align-items: flex-start;
}

i {
    margin-right: 10px;
    color: #bb86fc;
    font-family: "Roboto Condensed", sans-serif;
}

.contact p {
    margin: 5px;
    color: #bb86fc;
    font-size: 1.1rem;
}

