@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #76a9f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.window {
    background-color: #fff;
    width: 500px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: slideDown 0.5s ease forwards;
}

.title-bar {
    background-color: #c0d9ff;
    color: #000000;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border: 2px solid #243d63;
    border-bottom: none;
}

.title-bar h1 {
    margin: 0;
    font-size: 16px;
}

.close-button {
    cursor: pointer;
    font-size: 25px;
    padding: 5px;
    margin-right: 5px;
}

.content {
    padding: 10px 20px;
    border-radius: 0 0 5px 5px;
    border: 2px solid #243d63;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}