
/* GENERAL */

body {
    font-family: Georgia, Arial, sans-serif;
}

header {
    text-align: center;
    padding: 10px;
    background-color: #ffffff;
}

header img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
    margin-top: 10px;
}

section {
    background-color: #e9e9e9;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 2px #c2c2c2;
}

section img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    height: auto;
}

footer {
    background-color: #ffffff;
    text-align: left;
    padding: 10px;
    margin-left: 20px;
}

footer a {
    text-decoration: none;
    outline: none;
    color: #7e7e7e;
    padding: 10px;
}

footer a:hover {
    color: #000000;
}

/* NAVIGATION */

.navbar ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    background-color: #000000;
    padding: 10px;
    margin: 0px;
}

.navbar a {
    padding: 15px;
    display: block;
    text-decoration: none;
    text-align: center;
    color: #fffbfb;
}

.navbar a:hover {
    background-color: #b5b3b3;
    color: #000000;
}

/* PROJECTS */

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    /* max-width: 1200px; */
}

.project-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 10px;
    max-width: 400px;
}

.project-card:hover {
    transform: scale(1.03);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    margin-bottom: 10px;
    margin-top: 0px;
}

.project-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* ABOUT ME */

.about {
    padding-top: 1px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
}

/* HEADERS */

h1 {
    color: #000000;
    text-align: center;
}

h2 {
    color: #000000;
    text-align: center;
}

h3 {
    color: #000000;
    text-align: left;
}

/* HEADER */

.bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #1a202c;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: white;
    font-size: 24px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #4299e1;
}

/* ADHD MODE */


score {
    display: none;
    text-align: center;
    flex-direction: column;
}

#adhdButton {
    padding: 8px 16px;
    background-color: #585858;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#adhdButton:hover {
    background-color: #7f7f7f;
}

container {
    display: flex;
    justify-content: center;
    background-color: #e9e9e9;
    border-radius: 10px;
    box-shadow: 0 2px 2px #c2c2c2;
    margin: auto;
    width: 50%;
}

progress {
    width: 96%;
    justify-content: center;
    padding-top: 20px;
}

.circle {
    position: absolute;
    top: 0;
    aspect-ratio: 1/1;
    width: 40px;
    height: 40px;
    background: #d88303;
    border-radius: 50%;
    animation: animate 10s linear infinite;
}

.circle:hover {
    background-color: #ffa73b;
}

@keyframes animate {
    0% {
        transform: translateY(0vh) scale(0);
        opacity: 1;
    }
    10% {
        transform: translateY(0vh) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) scale(1);
        opacity: 1;
    }
}