html, body { 
    height: 100vh;
    margin:0; 
    padding:0;
    background: white; 
}
#navbar{
    width: 100%;
    height: 10%;
    background: #F3F6FA;
    position: absolute;
}
#logo{
    height: 60%;
    padding-right: 20%;
    position: absolute;
    background: url("../assets/logo.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    top: 20%;
    left: 1%;
    cursor: pointer;
}
#tomButton{
    position: relative;
    float: right;
    height: 60%;
    top: 20%;
    margin-right: 2%;
    padding-left: 2%;
    padding-right: 2%;
    background: rgba(60,99,176,1);
    color: rgba(255,255,255,1);
    border: None;
    font-family: Mulish;
    font-weight: Bold;
    font-size: 14px;
    border-radius: 0;
    cursor: pointer;
}
#notTomButton{
    position: relative;
    float: right;
    height: 60%;
    top: 20%;
    margin-right: 2%;
    padding-left: 2%;
    padding-right: 2%;
    background: rgba(60,99,176,1);
    color: rgba(255,255,255,1);
    border: None;
    font-family: Mulish;
    font-weight: Bold;
    font-size: 14px;
    border-radius: 0;
    cursor: pointer;
}
#left{
    width: 50%;
    height: 90%;
    position: relative;
    top: 10%;
    left: 0;
    float: left;
}
#right{
    width: 50%;
    height: 90%;
    position: relative;
    top: 10%;
    right: 0;
    float: left;
}
#matt{
    position: absolute;
    height: 70%;
    width: 95%;
    top: 15%;
    bottom: 15%;
    left: 5%;
    background: url("../assets/matt.jpeg");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    cursor: pointer;
}
#box{
    top: 20%;
    left: 10%;
    height: 75%;
    width: 80%;
    position: absolute;
}
#text1{
    min-width: 75px;
    color: rgba(60,99,176,1);
    position: relative;
    font-family: Mulish;
    font-weight: Bold;
    font-size: 14px;
}
#text2{
    color: rgba(55,63,65,1);
    position: relative;
    margin: 0;
    font-family: Mulish;
    font-weight: Bold;
    font-size: 44px;
    text-align: left;
    word-wrap: break-word;
}
#text3{
    color: rgba(115,123,125,1);
    position: relative;
    margin: 0;
    margin-top: 10%;
    font-family: Mulish;
    font-size: 16px;
}
#instructionsButton{
    height: 42px;
    background: rgba(255,255,255,1);
    color: rgba(60,99,176,1);
    font-size: 14px;
    margin-top: 10%;
    border: 1px solid #3C64B1;
    position: relative;
    padding-left: 10%;
    padding-right: 10%;
    cursor: pointer;
}
@media screen and (max-width: 860px) {
    #left {
        clear: both;
        width: 100%;
        height: fit-content;
    }
    #right{
        clear: both;
        width: 100%;
        height: fit-content;
    }
    #matt{
        position: relative;
        top: 0;
        bottom: 0;
        left: 0;
        right:0;

        width: 80%;
        padding-bottom: 62%;
        margin-left: 10%;
        margin-top: 5%;
        margin-bottom: 5%;
    }

    #instructionsButton{
        margin-bottom: 10%;
    }
}
@media screen and (max-width: 400px) { 
    #logo{
        width: calc(100% - 280px);
    }
}