body {
    background-color: #515171;
    color: black;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 17px;
}

a {
    text-decoration: none;
}

.menu {
    color: #BBBBBB;
    height: 64px;
    width: 64px;
    display: block;
    cursor: pointer;
    position: fixed; 
    top: 0;          
    right: 0;  
}


/* Wrapper */
#wrapper {
    background-color: #AEAAAE;
    width: 800px;
    border: 1px solid #000000;
    margin: 16px auto; /* Center horizontally */
    position: relative;
    box-shadow: 0px 0px 15px black;
    padding-left: 20px;
}

/* Title Bar */
.title-bar {
    background-color: black;
    color: white;
    height: 27.5px;
    font-family: "Trebuchet MS", sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-top: 1px solid #B6B6B6;
    border-right: 1px solid #616161;
    border-bottom: 1px solid #616161;
    border-left: 1px solid #B6B6B6;
}

/* Title Text */
.title-text {
    flex-grow: 1;
    text-align: center;
    font-weight: 700;
}

/* Window Buttons */
.resize-button, .close-button {
    width: 24px;
    height: 26px;
    background-color: black;
    border-top: 1px solid #B6B6B6;
    border-right: 1px solid #616161;
    border-bottom: 1px solid #616161;
    border-left: 1px solid #B6B6B6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Minimize (resize) button */
.resize-button {
    position: absolute;
    left: 0; /* Position it at the top-left corner */
    background-image: url('assets/minimize.png'); /* Path to minimize icon */
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

/* Close button */
.close-button {
    position: absolute;
    right: 0; /* Position it at the top-right corner */
    background-image: url('assets/close.png'); /* Path to close icon */
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

/* Header Text */
.first {
    color: black;
    font-size: 49px;
    font-weight: 700;
    text-shadow: 0px 4px 4px rgb(102, 102, 102);
    font-family: "DejaVu Sans", sans-serif;
}

.second {
    color: white;
    font-size: 49px;
    font-weight: 700;
    text-shadow: 0px 4px 4px rgb(102, 102, 102);
    font-family: "DejaVu Sans", sans-serif;
}
