* {
    box-sizing: border-box;
}

body {
    background-color: black;
    font-family: 'Roboto Mono', monospace;
    cursor: none; /* Hide the default cursor */
}

.custom-cursor {
    width: 20px;
    height: 20px;
    background-color: #FF4D00;
    border-radius: 50%;
    position: absolute;
    pointer-events: none; /* Ensures the cursor does not interfere with clickable elements */
    z-index: 9999; /* Ensures the cursor is on top of everything else */
    transform: translate(-50%, -50%);
}

.custom-cursor:hover {
    background-color: green; /* Optional: change color on hover */
}













.name {
    color: #E3E3E3;
    font-size: 100px;
    margin: 0px;
    width: auto;
}


.stay_still {
    overflow-y: hidden;
    cursor: none; /* Hide the default cursor */
}

h1, h2, p, ol {
    color: #E3E3E3;
}


.border {
    background-color: #923E8F;
    border: 3px;
    opacity: 50%;
    height: 3px;
    margin: 30px 30px 0px 30px;
    width: 95%;
}

.main-intro {
    /* margin: 150px 20px; */
}

.self_description {
    font-size: 20px;
    margin: 30px 20px 30px 0px;
    color: #E3E3E3;
}

.nav_buttons {
    margin: 30px 0px;
    display: flex;
}

.button {
    border: solid 1px #E3E3E3;
    padding: 15px 20px;
    background-color: black;
    text-align: center;
    font-size: 16px;
    border-radius: 10px;
    margin-right: 20px;
    width: 150px;
    align-items: center;
    height: 40px;
    color: #E3E3E3;
    text-decoration: none;
    line-height: 7px;
    display: block;
}

.button:hover {
    background-color: #FCD13A;
    color: black;
    cursor: pointer;
    border: none;
}

.nav_buttons {
    display: flex;
    justify-content: space-between;
}

.nav_buttons img {
    width: 50px;
}

.social {
    padding: 10px 10px;
    align-items: center;
}

.mouse {
    
}

.about {
    display: none;
}

footer {
    /* position: sticky; */
    bottom: 0;
    background: black;
    /* width: 100%;
    height: 30px; */
    padding: 0px 20px;
    color: #E3E3E3;
    /* text-align: center; */
}






/*CARD*/

.card {
    /* width: 350px; */
    width: 100%;
}

.card-title {
    padding: 0px 0px 20px 0px;
}

.top-part-card {
    /* background-image: linear-gradient(45deg, rgba(225, 185, 232, 0.6), rgba(11, 47, 178, 0.2)); */
    height: 350px;
    width: 100%;
    border-radius: 20px 20px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #6246EA;
}

/* .project1 {
    background-image: url("Slot-Machine-Image.png");
    
} 

.project2 {
    background-image: url("To-Do-List.png");
    
}

.project3 {
    background-image: url("Mental-Health-Blog.png");
    
} */

.card-img-top {
    width: 70%;
    margin: 10px 10px;
}

.card-body {
    display: flex;
    border: 2px solid rgba(98, 70, 234, .2);
    background-color: #6246EA;
    margin: 0px 0px 20px 0px;
    padding: 20px;
    border-radius: 0px 0px 20px 20px;
    width: 100%;
    gap: 15px;
}

.skill {
    border: 2px solid #E3E3E3;
    padding: 5px 20px;
    border-radius: 30px;
    width: auto;
    display: inline-block;
    margin: 5px 5px 5px 0px;
    font-size: 16px;
}

.body-part {
    flex: 50%;
}













/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container- add media query specific to width */
.container {
    height: 90vh;
    /* height: 600px; */
    margin: 10px 10px;
    /* border-top: 3px solid #923E8F; */
}

/* Row 1 */

.row1 {
    
    /* height: 60px; */
    display: flex;
    justify-content: space-between;
    background: black;
    border-radius: 10px;
    color: #E3E3E3;
    margin-bottom: 10px;
    border: 1px solid #E3E3E3;
}

.cell1 {
    width: 55%;
    padding: 15px 20px;
    float: left;
    height: 100%;
}

/* This included both the location and the weather
.cell2, .cell3 { 
    width: 22.5%;
    padding: 15px 0px 0px 20px;
    float: left;
    height: 100%;
}*/ 

.cell2 {
    width: 40%;
    padding: 15px 0px 0px 20px;
    float: left;
    height: 100%;
}

/* Row 2 */

.row2 {
    width: 100%;
    clear: left;
    display: flex;
}

.cell5 {
    /* height: 100%; */
    height: 100vh;
    /* clear: left; */
    float: left;
    width: 55%;
    padding: 0px 20px 20px 20px;
}

.cell6 {
    padding: 10px 0px 10px 20px;
    overflow-y: auto; 
    max-height: 90vh;
    /* clear: left; */
    float: left;
    width: 45%;
}



/* Styling for clarity (Optional) */
/* .cell1 { border: 1px solid black; }
.cell2 { border: 1px solid black }
.cell3 { border: 1px solid black }
.cell4 { border: 1px solid black }
.cell5 { border: 1px solid black }
.cell6 { border: 1px solid black }
.cell7 { border: 1px solid black }
.cell8 { border: 1px solid black } */



/*Project Pages*/

/*Title, demo link, and skills*/
h1, 
h1 + div {
    width: 45%;
    clear: left;
    margin: 30px 15px;
}

section > h2 {
    margin-bottom: 20px;
}

/*Sub sections*/
.project_description, 
.project_description + section, 
.project_description + section + section {
    float: left;
    margin: 30px 15px 50px 15px;
    width: 30%;
}

.image_container_styling {
    background: #E3E3E3;
    border-radius: 20px;
    clear: left;
    height: auto;
    margin: 0px 15px;
    padding: 10px 20px 20px 10px;
}

.image_container_styling > img {
    /* width: 950px; */
    width: 100%;
    border-radius: 20px;
}

.project_skills {
    border: solid 1px #FCD13A;
    padding: 10px 10px;
    background-color: black;
    text-align: center;
    font-size: 16px;
    border-radius: 10px;
    margin-top: 20px;
    margin-right: 20px;
    width: 270px;
    align-items: center;
    height: auto;
    color: #FCD13A;
    text-decoration: none;
    line-height: 20px;
    display: block;
}

























/*Media Queries*/


/*Tablet- 768px*/
@media screen and (max-width: 768px) {
    .cell5 {
        float: left;
        width: 100%;
    }
    
    .cell6 {
        clear: left;
        width: 100%;
        padding: 10px 0px 10px 0px;
        overflow-y: none; 
        max-height: none;  
    }

    .card {
        width: 47%;
        float: left;
        margin-right: 20px;
    }

    .body-part {
        flex: 50%;
    }

    .mouse {
        display: none;
    }
}







/*Mobile- 425px*/
@media screen and (max-width: 425px) {

    .container {
        height: auto;
    }

    /* Row 1 */

    .row1 {
        width: 100%;
        height: 180px;
    }

    .cell1 {
        width: 100%;
        height: auto;
    }

    .cell2, .cell3 {
        width: 100%;
        height: auto;
    }

    /* Row 2 */

    .row2 {
        height: auto;
    }

    .cell6 {
        clear: left;
        width: auto;
    }

    .self_description {
        margin: 30px 0px;
    }

    .card {
        width: 100%;
        float: none;
        margin-right: 20px;
    }

}