html, *{
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: "Monaco", monospace;
}

body{
    width: 100vw;
}

/*-----top half--------*/
.top-half{
    height:35vh;
    width: 100vw;
    background-color: green;
    display:flex;
    justify-content: space-around;
    flex-direction: column;
    h1{
        font-size: 6vh;
    }
    h2{
        font-size: 3vh;
    }
}
.top-info-holder{
    display: flex;
    flex-direction: row;
}
.logo{
    height: 20vh;
    width: 20vh;
    border: blueviolet 1px solid;
    margin: 3vh;
}
.top-text-holder{
    justify-self: center;

    align-self: center;
    height: 100%;
    align-content: center;
    text-align: start;
}
.button-holder{
    width: 100%;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
}

.top-button{
    background-color: burlywood;
    border: #000000 solid 1px;
    width: 40vw;
    height: 7vh;
    margin: 3vh;
    align-content: center;
    text-align: center;
    font-size: 4vh;
}


/*-----bottom half--------*/

.bottom-half{
    height:60vh;
    overflow-y: auto;
    padding: 2vh;
    p{
        font-size:2vh;
    }
}



/*-----footer half--------*/
footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100vw;
    position:fixed;
    bottom:0;
    height: auto;
    background-color: green;
    align-items: center;
}
footer p{
    margin-left: 2vh;
}

.bottom-button{
    border: #000000 solid 1px;
    background-color: burlywood;
    height: 5vh;
    width: 30vw;
    /*margin-right: 2vh;*/
    margin: 1vh 2vh 1vh 0;
    justify-content: center;
    align-content: center;
    text-align: center;
}