/* styles.css */
body, html {
    background-color:#000;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.container {
    position: relative;
    height: 100%;
    width: 100%;
    background: url('../img/laptop.png') no-repeat center center/cover;
}

.content {
    text-align: center;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.coming-soon-text {
    font-size: 5rem; /* Extra large font size */
    font-weight: bold;
    opacity: 0;
    margin: 0;
    filter:drop-shadow(10px 10px 10px black);
}
