* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 1170px;
   
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.container p {
    font-size: 1.2rem;
    line-height: 1.75rem;
    max-width: 700px;
    margin-bottom: 1rem;
    color: #333;
}

.container button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

.cursor {
    position: absolute;
    width: 14px;
    height: 14px;
    top : 50%;
    left : 50%;
    background-color: #ff0000;
    border-radius: 50%;
    z-index: 1000;
    transform: translate(-50%, -50%);
    
}