@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Manrope", serif;
    background: linear-gradient(135deg, #566ee6, #4e63d0);
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
h1, h2, h3, h4, h5, h6{
    color: #fff;
}
.container {
    width: 100%;
    max-width: 800px;
}

.browser-window {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.browser-header {
    background-color: #f0f0f0;
    padding: 10px;
    display: flex;
    align-items: center;
}

.browser-buttons {
    display: flex;
    gap: 5px;
}

.browser-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

.browser-address {
    flex: 1;
    margin-left: 20px;
    padding: 5px 10px;
    background-color: white;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #333;
}

.browser-content {
    padding: 40px;
    text-align: center;
}

.inactive-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: #566ee6;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 2s infinite;
}

.inactive-icon::before {
    content: "!";
    font-size: 40px;
    font-weight: bold;
    color: white;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.browser-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #566ee6;
}

.browser-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 600px) {
    .browser-content {
        padding: 20px;
    }

    .browser-content h1 {
        font-size: 2rem;
    }

    .browser-content p {
        font-size: 1rem;
    }

    .inactive-icon {
        width: 50px;
        height: 50px;
    }

    .inactive-icon::before {
        font-size: 30px;
    }
}