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

body {
    background-image:url("../images/background_image.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: "Space Mono", monospace;
    font-size: 20px;
    max-height: 100vh; 
    margin: 0;
}

.head {
    display: flex;
    justify-content: center; /* centers horizontally */
    padding-top: 10px;
    margin: auto;
}
.head img {
    width: 110px;
    height: auto;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px; /* adjust this to move everything down */
}

.window {
    width: 500px;
    /* height: 360px; */
    border: 1px solid black;
    background-color: #ffffff;
    margin-left: auto;
    margin-right: auto;
}

.window-main {
    width: 497px;
    height: 25px;
    background: #0342e8;
    margin: 0;
    padding: 0;
}

.window-button {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.main-content-page {
    background-color: #ffffff;
}

.window-button div {
    width: 22px;
    height: 20px;
    border: 1px solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.xmark {
    background-color: red;
    color: white;
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 20px;
    cursor: pointer;
}

.xmark i {
    font-size: 12px;
}

.max {
    background-color: #0342e8; 
    color: white;              
    width: 22px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    cursor: pointer;
}

.max i {
    font-size: 10px;
}

.min {
    background-color: #0342e8; 
    color: white;              
    width: 22px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    cursor: pointer;
    padding-top: 10px;
}

.min i {
    font-size: 12px;
}

.window-tag {
    width: 497px;
    height: 40px;
    box-sizing: border-box;
    background: #040f5a;
    border: 1px solid #040f5a; 
    padding-left: 10px;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.window-tag h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    padding-left: 30px;
}

.main {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 30px;
}

.main a {
    text-decoration: none;
    color: #ffffff;
}

.copy {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 5px;
    color: #ffffff;
    font-size: 17px;
}

.window-main-text {
    align-items: center;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    text-align: left;
}

.window-main p {
    font-size: 15px;
    padding-top: 10px;
    font-weight: 600; 
}

.content {
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    gap: 15px;
}

.content video {
    padding-top: 20px;
}

.content p {
    font-size: 12px;
    padding-top: 20px;
    font-weight: 100;
}

/* Updated last_content section */
.last_content {
    text-align: center; /* center the text + buttons */
    margin-top: 20px;
}

.last_content p {
    color: red;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.last_content .yes-button {
    display: inline-block;
    padding: 8px 16px;
    margin: 5px;
    background-color: #f0f0f0;
    color: #000;
    border: 1px solid #43454c;
    border-radius: 4px;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.last_content .yes-button:hover {
    background-color: #d3d3d3;
    color: #302a2a;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 500px) {
    .last_content .yes-button {
        display: block;
        width: 80%;
        margin: 8px auto;
    }
}
