body {
    font-family: 'JetBrains Mono', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important;
    /* Create a smooth gradient background */
    background: linear-gradient(135deg, #1c1c1c, #2b2b2b, #3a3a3a, #1a1a1a);
    background-size: 400% 400%;

    /* Enable smooth gradient animation */
    animation: gradientShift 12s ease infinite;

    /* Scrollable body */
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 20px; /* Padding to avoid text touching edges */
    min-height: 100vh; /* Ensure full viewport height */
    overflow-y: auto; /* Enable vertical scrolling */
}

/* Keyframes for smooth gradient animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    color: white !important;
    padding: 32px;
}

.title { 
    font-size: 35px;
    font-weight: bold;
    text-align: center;
}

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

.col-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.iphone-frame {
    width: 300px;
    height: 600px;
    border: 10px solid black;
    border-radius: 30px;
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.notch {
    width: 100px;
    height: 30px;
    background-color: black;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.logos {
    margin-top: 24px;
    margin-bottom: 24px;
}
.screen {
    width: 100%;
    height: calc(100% );
    border-radius: 20px;
    overflow: hidden;
}

.home-button {
    visibility: hidden;
    width: 50px;
    height: 50px;
    background-color: #585858;
    border-radius: 50%;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* CSS to style the Telegram link */
.telegram-link {
    color: #00e5ff; /* Bright cyan for visibility on dark background */
    font-weight: bold;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for extra contrast */
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
    margin-bottom: 20px;
}

/* Hover effect for added interactivity */
.telegram-link:hover {
    background-color: #00e5ff;
    color: #1a1a1a; /* Dark color for contrast against bright hover background */
}

#typing { 
    font-size: 16px;
    color: #e0e0e0;
}

.companies { 
    background-color: #daf4e7; 
    padding: 16px; 
    text-align: center;
    border-radius: 15px; /* Adjust the value to change the roundness */
}

.companies img {
    margin: 16px;
}


.laptop {
    width: 80%;
    max-width: 800px;
    border: 10px solid black;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
}

.laptop-screen {
    width: 100%;
    height: 40vh;
    background-color: white;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
}