@import url('https://fonts.googleapis.com/css?family=Exo');

/****************************************************
************ DESKTOP CONFIGURATION ******************
*****************************************************/

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #424244;
}

.intro {
    height: 100%;
    width: 100%;
    margin: auto;
    display: table;
    top: 0;
    background-size: auto;
}

.intro .inner {
    display: table-cell;
    vertical-align: middle;
    width: 100%; 
    max-width: none;
}

.pic {
    float: left;
    width: 35%;
    vertical-align: middle;  
    margin-left: 5%;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
     
}

.content h1 {
    font-family: 'Exo', sans-serif;
    color: #F9F3F4;
    text-shadow: 0px 0px 300px #000;
    font-size: 500%;
    font-style: italic;
    
}

.nudge { 
    position: relative;
    top: 30px;
    left: -5%;
}

.btn {
    border-radius: 0px;
    font-family: 'Exo', sans-serif;
    color: #FFFFFF;
    background-color: rgb(235, 130, 41, 0.5);
    font-size: 140%; 
    padding: 10px 50px;
    text-decoration: none;
    margin-top: -20px;
    transition: 0.3s;
}

.btn:hover {
    background-color: rgb(235, 130, 41, 1);
}


/****************************************************
************ TABLET CONFIGURATION *******************
****************************************************/

@media screen and (max-width: 768px){
.content h1 {
        font-size: 350%;
}  
.btn {
        font-size: 120%; 
        padding: 7px 30px;  
    
}
.nudge { 
    position: relative;
    top: 30px;
    left: -9%;
}
    
.pic {
 
    width: 30%;
    margin-left: 11%;
}
}

/****************************************************
************ MOBILE CONFIGURATION *******************
****************************************************/

@media screen and (max-width: 480px){
.content h1 {
        font-size: 280%;
}  
.btn {
        display: block;
        font-size: 130%; 
        width: 100%;
        margin-top: 30px;
        padding: 10px 20px;
        text-decoration: underline;
        background-color: rgb(235, 130, 41, 0.6);
        
}
.btn:active {
    background-color: rgb(235, 130, 41, 1);
}

.nudge { 
    position: relative;
    top: 10px;
    left: -5%;
}
    
.pic {
    margin-left: 7%;
    width: 25%;
    
}
}

@media screen and (max-width: 330px){
.content h1 {
        font-size: 250%;
}     
.pic {
    margin-left: 7%;
    width: 25%;
}
}
