* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html,body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
}
header {
    width: 100%;
    min-height: 600px;
    padding: 20px 0;
    text-align: center;
    background-color: gold;
    border-bottom: 1px solid #e7e7e7;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: relative;
}
header h1 {
    margin-top: 150px;
    margin-bottom: 15px;
    font-size: 6rem;
}
header h3 {
    margin-bottom: 80px;
    font-size: 1.56rem;
}
header h2 {
    color:red;
    font-size: 3.5rem;
}
.buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}
button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    position: relative;
}
#agree-btn {
    background-color: #4CAF50;
    color:white;
}
#decline-btn {
    background-color: #f44336;
    color: white;
}
header ul li button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    text-decoration: underline;
}
main {
    width: 100%;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items:center;
    text-align: center;
    position:relative;
    margin-bottom: 10px;
}
.blurred {
    filter: blur(10px);
    pointer-events: none;
    user-select: none;
    opacity: 1 !important;
}
.prompt h2 {
    position: relative;
    top: 50%;
    left: 0%;
    transform: none;
    text-align: center;
    color:#8B0000;
    z-index: 2;
    padding: 20px;
    border-radius: 8px;
    display: block;
}
.prompt p {
    position:relative;
    top: 50%;
    left: 0%;
    transform: none;
    text-align: center;
    color:#333;
    z-index: 10;
    padding: 20px;
    border-radius: 8px;
    display: block;
}
.content-wrapper {
    display: block !important;
    position: relative;
    z-index: 1;
}
#signed-text {
    color: #2e7d32;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 12px 24px;
    background-color: #e8f5e9;
    border-radius: 50px;
    display: none;
    margin: 20px auto;
    max-width:fit-content;
}
.image-container {
    text-align: center;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.image-container img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 4px;
}
#return-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 16px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}
@media (max-width:600px) {
    header nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 10px 20px;
    }
    .overlay-massage {
        padding: 25px;
    }
}
#signed-confirmation {
    text-align: center;
    margin-top: 20px;
}
.container {
    width: 100%;
    min-height: 100vh;
    align-items:center;
    padding: 0px;
    box-sizing: border-box;
    position: relative;
}
.post-sign-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
#reset-btn {
    width: 80px;
    height: 24px;
    padding: 0;
    background-color: #d4d0c8;
    border: 2px solid;
    border-color: #404040 #f0f0f0 #f0f0f0 #404040;
    color: #000;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    margin-left: 20px;
    position: relative;
    left:32px;
    top:38px;
}
#reset-btn:active {
    border-color: #404040 #f0f0f0 #f0f0f0 #404040;
    background-color: #bdb8b0;
    transform: translate(1px,1px);
}
#reset-btn:hover {
    background-color: #c0b8b0;
    text-decoration: underline;
}
.vertical-images {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.vertical-images img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}    
.vertical-images img:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


