*{
    font-family: 'Funnel Display', Arial, monospace;
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: #070f0f;
}

.simulator-introduction{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.simulator-introduction h2{
    color: #daf7e9;
    font-size: 24px;
    font-weight: bolder;
    padding-bottom: 1rem;
}
.simulator-introduction p{
    color: #B0E4CC;
    width: 35%;
    text-align: center;
    padding-bottom: 2rem;
}
.simulator-introduction button{
    transition: all 0.2s ease;
    background-color: #B0E4CC;
    color: #070f0f;
    font-weight: bolder;
    font-size: 16px;
    border-style: none;
    padding: 1rem 5rem;
    border-radius: 25px;
}
.simulator-introduction button:hover{
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    cursor: pointer;
}

/* Simulator */
.simulator{
    background-color: #408A71;
    height: 100vh;
}
