body, html {
    margin: 0;
    height: 100%;
    /* background-color: white; */
    background-image: url("wallpaper.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 16px;
    color: black;
    line-height: 2;
}

.material-icons {
    vertical-align: middle;
    margin-right: 5px;
    color: rgb(209, 67, 57);
}

.header {
    font-size: 24px;
}

#landing_page {
    width: 100%;
    height: 100%;
    /*
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    */
    background-image: url("wallpaper.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    /* box-shadow: 0px 10px 10px #a19e9e; */
}

#landing_page_header {
   color: rgb(209, 67, 57);
    font-size: 40px;
    /* padding: 40% 5% 0 0; */
    /* transform: translate(75%, 75%); */
}

#wrapper {
    display: table;
    height: 100%;
    width: 100%;
}

#landing_page_text {
    display: table-cell; 
    vertical-align: bottom; 
    color: #393a73;
    font-size: 30px;
    text-align: right;
    padding: 0 5% 5% 0;
    /* transform: translate(75%, 75%); */
}

#main_page {
    margin-top: 20px;
    width: 100%;
    height: 100%;
    background-color: white;
}

.box {
    width: 30%;
    margin: 4% auto;
    border: 1px solid #393a73;
    border-radius: 30px;
    box-shadow: 7px 7px 10px #a19e9e;
    padding: 4% 10%;
}

@media only screen and (max-width: 1600px) {
    
}

@media only screen and (max-width: 1400px) {
    .box {
        width: 50%;
    }
}

@media only screen and (max-width: 1080px) {

}

@media only screen and (max-width: 720px) {
    #landing_page_text {
        padding: 0 0 10% 0;
        text-align: center;
    }
    .box {
        width: 70%;
    }
}