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

a {
    color:#61c4ec;
}

a:hover {
    color:#f86666;
}

a:visited {
    color:#8b53fb
}

body {
    font-family: monospace;
    background: linear-gradient(180deg, #221d30 0%, #47325d 100%);
    min-height: 100vh;
    color: #333;
}

header {
    padding: 40px 30px;
    background-color: #4c2b67;
}

.header-link {
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: inline-block;
}

.header-link:hover {
    transform: scale(1.05);
}

.Header_Text {
    color: #9f38f3;
    font-family: monospace;
    font-size: 35px;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Intro Section */
.Intro-Section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(93, 208, 243);
    animation: fadeInDown 1s ease-out;
}

.title h1 {
    color: #60c1e7;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.Introduction {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.Intro-Section button {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-family: monospace;
    border: none;
    background-color: #513737;
    color: #f86666;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: none;
}

.Intro-Section button:hover {
    background-color: #ea6666;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
.card {
    min-height: auto;
    background: rgb(24, 37, 48);
    border-radius: 20px;
    border: 3px solid #6029cf;
    padding: 0; /* Keeps header flush to edges */
    margin-top: 50px;
    display: flex;
    flex-direction: column; /* Stacks header above content */
    align-items: stretch;   /* Forces header to fill full width */
    justify-content: flex-start;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    overflow: hidden; /* Clips the top red corners */
}

.buttons-section {
    display: flex;
    flex-direction: row;
    justify-content: center, space-evenly;
    gap: 10px;
    align-items: center;

}

.card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.about-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
}

.about-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3b9bc7;
    text-align: center;
}


.skills {
    overflow: hidden;
    margin-top: 40px;
    padding: 0px;
    background: #232d38;
    border-radius: 20px;
    border: 3px solid#6029cf;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.skills.revealed {
    opacity: 1;
    transform: translateY(0);
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 32px;
    padding: 30px;
    color: #dc4343;
    margin: 0;
    margin-bottom: 5px;
    font-size: 1.5rem;
    background-color: #541313;
    
}

.header > h3,
.header > h2 {
    color: #dc4343;
    display: block;
    text-align: center;
}

.skills ul {
    list-style: none;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.skills li {
    padding: 10px;
    background: rgb(15, 24, 37);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    color: #069ef0;
    font-weight: 500;
}

.skills li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.js_stuff {
    display: flex;
    align-items: center;
    justify-content: center;
}

.js_stuff button {
    border-radius: 20px;
    background-color: #084a6d;
    border:3px solid #069ef0;
    color: #069ef0;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
    font-family: monospace;
    transition: all 0.3s ease-out;
}

.js_stuff button:hover {
    transform: translateY(-5px);
    background-color:#f05d5d;
    color:#000000;
    border-color:#f05d5d;
}

.js_stuff button:active {
    background-color: #9e1e40;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
