body {
    font-family: monospace;
    margin: 0;
    background: #eee;
    font-size: larger;
}


.container {

    width: 90%;

    margin: 40px auto;
    padding: 30px;

    background: white;

    border: 2px;

    box-shadow: 5px 5px 0px #999;

}


h1 {
    font-size: 40px;
    text-align: center;
    font-size: 40px;
}

.catimg {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin-left: 10px;
}

.aboutme {
    text-align: center;
    line-height: 1.5;
}

.menuButton {
    font-family: monospace;
    padding: 5px 10px;
    margin: 5px;
    background: white;
    color: black;
    border: 2px solid #333;
    cursor: pointer;
    box-shadow: 4px 4px 0px #999;
    font-size: 16px;
}


.menuButton:hover {
    background: #eee;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #999;
}


.menuButton:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}

.work-card {

    padding: 12px;
    margin: 15px 0;
    background: #fff;

    line-height: 1;
}

.imgWrap {
    text-align: center;
}

.mydesk {
    width: 90%;
    height: auto;
    display: inline-block;
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap; /* allows mobile wrap if needed */
    margin-top: 20px;
}

.contact p {
    margin: 0;
}
.copy {
    cursor: pointer;
    text-decoration: underline;
}

.copy:hover {
    background: #eee;
}

.contact a {
    color: black;
    text-decoration: underline;
}

.resume-box {
    margin-top: 20px;
    border: 2px solid #333;
    box-shadow: 4px 4px 0px #999;
    background: #fff;
    padding: 10px;
}

.resume-view {
    width: 100%;
    height: 1000px;
    border: none;
}

.resume-actions {
    text-align: center;
    margin-top: 10px;
}

.resume-actions a {
    display: inline-block;
    padding: 8px 15px;
    border: 2px solid #333;
    text-decoration: none;
    color: black;
    background: white;
    box-shadow: 3px 3px 0px #999;
}

.resume-actions a:hover {
    background: #eee;
}

.description {
    text-align: center;
    line-height: 1.5;
    margin: 20px auto;
    width: 80%;
}

.description p {
    margin: 0;
}