/* Basic CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('./data/windows-xp-wallpaper-bliss.jpg');
    background-size: cover;
    background-position: center;
    flex-direction: column;
    text-align: center;
}
h1 {
    font-size: 36px;
   
}
h2{
    font-size: 20px;
    font-style: normal;
}
h3 {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-color: #a0caac;
    border-style:solid;
    border-width:6px;
    border-color:rgb(223, 223, 223) rgb(10, 10, 10) rgb(10, 10, 10) rgb(223, 223, 223);
    box-shadow:rgb(254 254 254) 1px 1px 0px 1px inset, rgb(132 133 132) -1px -1px 0px 1px inset;
    box-sizing: border-box;
}


/* Title bar styling */
.title-bar {
    background:rgb(198, 198, 198);
    color: rgb(10, 10, 10);
    padding: 20px;
    border-style:solid;
    border-width:7px;
    border-color:rgb(223, 223, 223) rgb(10, 10, 10) rgb(10, 10, 10) rgb(223, 223, 223);
    box-shadow:rgb(254 254 254) 1px 1px 0px 1px inset, rgb(132 133 132) -1px -1px 0px 1px inset;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 130px;
}

/* Headline styling */
.headline {
    background:rgb(198, 198, 198);
    color: rgb(10, 10, 10);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow:rgb(254 254 254) 1px 1px 0px 1px inset, rgb(132 133 132) -1px -1px 0px 1px inset;
    box-sizing: border-box;
    border-radius: 10px;
}

/* Blue bar styling */

/* Main window styling */
.main-window {
    background:transparent;
    color: rgb(10, 10, 10);
    padding: 3px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-style:solid;
    border-width:2px;
    border-color:rgb(223, 223, 223) rgb(10, 10, 10) rgb(10, 10, 10) rgb(223, 223, 223);
    box-shadow:rgb(254 254 254) 1px 1px 0px 1px inset, rgb(132 133 132) -1px -1px 0px 1px inset;
    box-sizing: border-box;
}

/* Button styling */
.button {
    margin: 0 auto;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    color: #092767;
    background-color: transparent;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Message layout styling */
.message-layout {
    background: rgba(255, 255, 255, 0.8);
    width:auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#messageDisplay{
    font: 1rem;
    font-size: 25px;
    font-family: Arial, sans-serif;
    width:100%;
    padding:16px 0px;
    z-index:10;
    border-style:solid;
    border-width:2px;
    border-color:rgb(223, 223, 223) rgb(10, 10, 10) rgb(10, 10, 10) rgb(223, 223, 223);
    box-shadow:rgb(254 254 254) 1px 1px 0px 1px inset, rgb(132 133 132) -1px -1px 0px 1px inset;
    box-sizing: border-box;
    display: inline-block;
    background:rgb(198, 198, 198);
    color: rgb(10, 10, 10);
}


/* Responsive design adjustments */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .title-bar, .headline, .main-window, .message-layout {
        width: 100%;
        padding: 15px;
    }

    .blue-bar {
        width: 100%;
    }

    button {
        width: 100%;
        padding: 15px;
        font-size: 1.2em;
    }
}
