body{
    font-family: 'Raleway', sans-serif;
}

main{
    box-sizing: border-box;
    background: url("mountain.jpg");
    width:100vw;
    height: 100vh;
    display: block;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.name {
    font-size: 5em;
    color:white;
    text-shadow: 4px 4px 10px rgba(0,0,0,.6);
    text-align: center;
}

.site-container{
    width: 40%;
    max-width: 525px;
    border:2px solid white;
    margin: 1.5em;
    background-color: rgba(0,0,0,.6);
    color:white;   
}

.link{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
    color:white;
    text-align: center;
}

.header{
    background-color:rgba(255,255,255,1);
    display: inline-block;
    color:black;
    padding: .5em;
    
}

.container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 5em 5em;
}

form{
    width: 35%;
    max-width: 450px;
}

button{
    width: 100%;
    height: 60px;
    font-size: 2em;
    background-color: rgba(0,0,0,.6);
    border:none;
    border:2px solid white;
    color:white;
}

.login-form{
    display: flex;
    flex-direction: column;
}

.login-form input{
    padding: 1em;
    margin-bottom: 1em;
}

.install-button{
    position: fixed;
    bottom: 0;
    left:0;
    display: inline;
    width: auto;
    font-size: 1em;
    height: auto;
    padding: .5em;
}

@media (max-width: 1250px) {
    .site-container{
        width: 50%;
    }

 }

 @media (max-width: 700px) {
    .site-container{
        width: 90%;
    }

    form{
        width: 90%;
    }
 }