.initial-pitch-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
    text-align: center;
    padding: 0 2vw;
}

.initial-pitch-ui h1 {
    font-size: 2.5rem;
    margin: 0 0 1rem;
    color: #000;
}

.initial-pitch-ui p {
    font-size: 1.2rem;
    margin: 0 0 2rem;
    font-weight: 600
}

.demoTool {
    height: 5vh;
    width: 7vw;
    background-color: #000;
    color: #e9ecef;
    border: none;
    border-radius: 5vh;
    cursor: pointer;
    font-weight: bold;
}

.demoTool:hover{
    background-color: #333;
}

@media(max-width: 768px){
    .initial-pitch-ui {
        margin-top: 25.5vh;
        margin-bottom: 25.5vh;
    }
    .demoTool {
        height: 4.5vh;
        width: 27.5vw;
    }
}