<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.first-container {
    display: flex;
    flex-wrap: row wrap;
}

.first-container section{
    background-color: #d8fae4;
    width: 47%;
    margin: 3%;
    border-radius: 10px;
    animation: fadeIn 1s ease-in-out;
}

.second-container{
    display: flex;
    flex-wrap: row wrap;
    animation: fadeIn 2s ease-in-out;
}

.second-container img{
    margin-right: 20px;
    width: 35%;
    height: 35%;
    border-radius: 10px;
}

.third-container{
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 1%;
}

.accomplishments{
    background-color: #fde3b0;
    width: 40%;
    border-radius: 10px;
    animation: fadeIn 2s ease-in-out;
    z-index: 1;
    transition: opacity 0.3s ease;
    position: relative;
}

.accomplishments article{
    margin-left: 4%;
    margin-right: 4%;
    margin-bottom: 2%;
    visibility: visible;
    animation: fadeIn 2s ease-in-out;
}

.accomplishments:hover {
    opacity: 0;
}

.goals{
    background-color: #b0c8fd;
    width: 40%;
    border-radius: 10px;
    animation: fadeIn 3s ease-in-out;
    z-index: 0;
    position: absolute;
}

.goals article{
    margin-left: 4%;
    margin-right: 4%;
    margin-bottom: 6%;
    visibility: visible;
    animation: fadeIn 3s ease-in-out;
}

#about-me {
    margin-left: 4%;
    margin-right: 4%;
    animation: fadeIn 2s ease-in-out;
}

#hover-alert{
    font-weight: bold;
    border: 3px solid;
    border-radius: 10px;
    padding: 6px;
    animation: fadeIn 2s ease-in-out;
}

.hover-div{
    text-align: center;
    margin-bottom: 3%;
    margin-top: 1%;
}

footer{
    text-align: center;
}

body {
    background-color: #F6C7B3;
    font-family: 'Courier New', Courier, monospace;
    margin: 5%;
}

header{
    animation: fadeIn 1s ease-in-out;
}

nav {
    text-align: center;
    font-size: 20px;
}

nav a:link {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

hr{
    border: none;
    border-top: 2px solid black;
}

</pre></body></html>