* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    cursor: none;
    overflow: hidden;
    background-color: black;
}

.cursor{
    position: absolute;
    background-color: white;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    transition: all 0.5s ease-out;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.container1{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.first{
    text-align: center;
}

.container2{
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 0;
    padding: 5rem;
    display: none;
}
.second p{
    text-align: justify;
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 50px;
    color: black;
    display: inline-block; 
    margin-bottom: 100px;
}
