/* Define your root variables */
:root {
    --background-light: #ffffff;
    --color-light: #333;
    --background-dark: #333;
    --color-dark: #ffffff;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    color: var(--color-dark);
    background: var(--background-dark);
    transition: all 0.3s ease-in-out;
}

section {
    padding: 60px 0;
    overflow: hidden;
}

/* Navigation styles */
header h1 {
    font-size: 15rem;
}

.nav-link {
    color: var(--color-dark);
}

.nav-link:hover {
    color: #8d8d8d;
}

/* Main content styles */
main {
    padding: 20px;
}

/* About styles */
.card-body {
    background-color: #454545;
}

.card-body img {
    width: 100%;
    padding-right: 1rem;
}

.card-text {
    color: var(--color-dark);
}

/* Footer styles */
footer {
    padding: 20px;
    text-align: center;
}

/* Media queries for responsiveness */
/* Laptop */
@media screen and (max-width: 1024px) {
    header h1 {
        font-size: 10rem; /* Adjust font size for laptop */
    }
    /* Add more specific styles for laptop if needed */
}

/* iPad */
@media screen and (max-width: 768px) {
    header h1 {
        font-size: 7rem; /* Adjust font size for iPad */
    }
    /* Add more specific styles for iPad if needed */
}

/* iPhone */
/* No changes to your existing CSS */

/* Media query for smaller screens such as iPhones */
@media screen and (max-width: 767px) {
    .profile .container .row [class^="col-"] {
        flex-direction: column; /* Change flex direction to column */
        padding-top: 2rem;
    }
}


