
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Space Mono", monospace;

    background-color: cornsilk;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    min-height: 100vh;
    overflow-y: auto; 
}


header {
    width: 100%;
    text-align: left;
    padding: 10px;
}

#oplink {
    text-decoration: none;
    color: darkred;
    font-size: 1.5rem;
}

#oplink:hover 
{
    
    color:blue;

}



#welcome {
    font-size: 3rem;
    margin: 10px 0;
}

.divider {
    border-top: 2px solid black;
    width: 100%;
    margin: 10px 0;
}

p {
    margin: 10px 0;
    font-size: 1rem;
}


.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

#imagetext {
    color: darkred;
    text-decoration: underline;
    margin-bottom: 10px;
}

img {
    width: 80%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}


#things {
    margin-top: 20px;
    margin-bottom: 80px; 
}

#tlist {
    display: block;
    margin-top: 10px;
    text-decoration:none;
    font-size: 1rem;
    color: darkred;
    text-align: center;
    position: relative;
}

#tlist:hover , #projectthings:hover
{
    color: blue;
    text-shadow: 10px;
    
}




.footer {
    width: 100%;
    background: cornsilk;
    padding: 15px 0;
    text-align: center;
    position: static;
    bottom: 0;
    left: 0;
}

.footer .social-icons a {
    font-size: 2rem;
    color: black;
    margin: 0 15px;
    text-decoration: none;
}

.footer .social-icons a:hover {
    color: darkred;
}


@media (max-width: 768px) {
    #welcome {
        font-size: 2rem;
    }
    img {
        width: 90%;
    }
    .footer .social-icons a {
        font-size: 1.5rem;
    }
    .sepcolumns {
        flex-direction: column; 
        align-items: center; 
        gap: 10px;
    }
}




#projectthings
{
    margin-top: 10px;
    text-decoration:none;
    font-size: 1rem;
    color: darkred;
}


.terminal {
    background-color: #272822; 
    color: #a6e22e; 
    font-family: "Courier New", monospace;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    overflow-x: auto;
    text-decoration: none;

}

.terminal::before {
    content: "$ ";
    color: #f92672; 
}

.blog {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.blog p {
    line-height: 1.7;
}

