@charset "utf-8";
/* CSS Document */
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url("/images/wallpaper.png");
    background-repeat: repeat;
    background-size: 400px;  
    font-family: "Trebuchet MS", Arial, sans-serif;
    min-height: 100vh;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;   
    align-items: center;      
    justify-content: center;  

    background: rgba(0, 0, 0, 0.35);
    padding: 20px;
}

.content-box {
    background: rgba(255, 255, 255, 0.85);
    padding: 40px 60px;
    text-align: center;
    border-radius: 14px;
    max-width: 600px;
    width: 100%;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.content-box h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #9e2a2f; 
    letter-spacing: 1px;
}

.content-box p {
    font-size: 1.2rem;
    color: #5c452a; 
}

.roper-photo {
    width: 100%;
    max-width: 350px;        
    border-radius: 12px;
    margin-bottom: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

