body{
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    width:100vw;
    min-height:100vh;
    /*background-color: #6197ed;*/
    background-color: #84e87d;
}

#hero{
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

#mainLogo{
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

#title{
    margin-bottom: 15px;
    font-size: 40px;
    font-weight: 600;
}

#explainer{
    margin-bottom: 30px;
    text-align: center;
    font-size: 20px;
}

#startButton{
    width: 120px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 16px;
}

#guideButton{
    width: 120px;
    height: 40px;
    border-radius: 10px;
    border:1px solid black;
    text-align: center;
    color: black;
    background-color: rgba(0,0,0,0);
    font-size: 16px;
}