*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    color: black;
}
#top{
    background-color: white;
    display: flex;
    justify-content: space-between;
    margin-right: 30px;
    margin-left: 30px;
    padding-bottom: 20px;
    padding-top: 20px;
    height: 10vh;
}

p{
    font-size: 42px;
}
span{
    color: rgb(95, 166, 224);
}
#background-section{
    background-color: green;
    width: 100vw;
    height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-self: center;
    justify-self: center;

}

#background{
    background-color: black;
    padding: 10px;
    width: 35vw;
    border-radius: 10px;
    text-align: center;
    display: none;
}

#motivation #motiQuote{
    color: red;

}
#click-me{
    width: 15vw;
    height: 10vh;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 30px;
    border: 4px solid black;
    background-color: inherit;
}

#click-me:hover{
    background-color: black;
    color: white;
    cursor: pointer;
}