* {
    margin: 0;
}

html, body {
    height: 100%;
    margin: 0px;
}

#header {
    height: 60px;
    width: 100%;
    z-index: 10000;
    position: fixed;
    font-size: 0;
    background: rgba(255,255,255,0.9);
}

#inner_header{
    position: relative;
    height: inherit;
    width: 1000px;
    left: 50%;
    margin-left: -500px;
    font-size: 0;
}

#main_logo {
    position: relative;
    padding: 5px;
    height: 50px;
    width: 150px;
    left: 0;
    margin-left: 0;
    display: inline-block;
}

#register_login_container {
    position: absolute;
    height: inherit;
    display: inline-block;
    vertical-align: top;
    font-size: 0;
    right: 0;
}

.float_top_buttons{
    display: inline-block;
    text-decoration: none;
    height: 30px;
    margin: 15px;
    font-size: 16px;
    border: none;
    color: #000;
    cursor: pointer;
    font-weight: 500;
    line-height: 30px;
    padding: 0 5px;
}

#register_login_bar {
    display: inline-block;
    font-size: 20px;
    height: inherit;
    color: #000;
    font-weight: 500;
}

#section_1 {
    position: relative;
    padding: 20px;
    height: calc(100% - 40px);
    width: calc(100% - 40px);
    min-height: 550px;
    max-height: 800px;
    background: #7366e5;
    overflow: hidden;
}

#section_1_container {
    position: relative;
    padding: 20px;
    top: 50%;
    margin-top: -150px;

}

#main_title {
    position: relative;
    font-size: 60px;
    font-weight: 600;
    padding-bottom: 20px;
    text-align: center;
    color: #fff;
}

#secondary_title {
    position: relative;
    font-size: 20px;
    font-weight: 400;
    padding-bottom: 30px;
    text-align: center;
    color: #fff;
}

#example_link_container {
    position: relative;
    width: 390px;
    left: 50%;
    margin-left: -195px;
    font-size: 0;
}

.example_link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    height: 50px;
    width: 180px;
    border: 2px solid #fff;
    border-radius: 200px;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    line-height: 50px;
    text-align: center;
}

.example_link:nth-child(2) {
    margin-left: 22px;
}

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

    #inner_header {
        width: 100%;
        left: 0;
        margin-left: 0;   
    }

}

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

    #main_title {
        font-size: 40px;
    }

    #register_login_container {
        display: none;
    }

}

@media screen and (max-width: 420px) {
    
    #section_1_container {
        margin-top: -175px;
    }
    
    #example_link_container {
        width: 200px;
        left: 50%;
        margin-left: -100px;
    }
    
    .example_link {
        display: block;
        margin: 0;
        width: calc(100% - 4px);
    }
    
    .example_link:nth-child(2) {
        margin: 0;
        margin-top: 20px;
    }
    
}

@media screen and (max-width: 371px) {
    
    #section_1_container {
        margin-top: -200px;
    }
    
}