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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background: linear-gradient(to bottom, #d4f0ff, #b7e1f7);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 900px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    color: #004d7a;
    margin-bottom: 5px;
}

header p {
    font-size: 1.2em;
    color: #007bbf;
}

#screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    border-radius: 10px;
    overflow: hidden;
    background: #eefaff;
    margin: 20px 0;
    border: 2px solid #b3e0ff;
}

#context {
    width: 100%;
    height: 100%;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

form label {
    font-size: 1em;
    color: #333;
    margin-bottom: 5px;
}

form input[type="url"] {
    width: 80%;
    max-width: 300px;
    padding: 10px;
    border: 1px solid #b3e0ff;
    border-radius: 5px;
    font-size: 1em;
    margin-bottom: 10px;
    background-color: #f2f9ff;
}

form input[type="submit"] {
    padding: 10px 20px;
    background-color: #007bbf;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
}

form input[type="submit"]:hover {
    background-color: #005f8a;
}

.data-display {
    width: 100%;
    text-align: left;
    padding: 10px;
    background: #f9fdff;
    border-radius: 5px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
    color: #004d7a;
}

.data-display p {
    font-size: 1.1em;
    line-height: 1.6;
}

.data-display span {
    font-weight: bold;
    color: #007bbf;
}

@media (max-width: 768px) {
    #screen {
        height: 40vh;
    }

    form input[type="url"] 
    {
        width: 90%;
    }
}

