body {
    background-image: url('../img/personal_web_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: 'Open Sans',sans-serif;
}

#right_header {
    align-items: end;
}

#intro_container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
}

#intro_cover {
    background-image: url('../img/personal_web_bg_logo.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 720px;
    height: 450px;
    display: flex;
}

#left_container {
    width: 365px;
    align-items: center;
    text-align: center;
    justify-content: center;
}

h1 {
    margin-top: 60px;
}

#form_container {
    width: 250px;
    margin-left: 55px;
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 0 0 3px black;
}

input {
    border: none;
    border-bottom: 1px solid rgba(68, 68, 68, 0.719);
    outline: none;
    padding-left: 5px;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
}
input:focus {
    border-bottom: 1px solid rgba(68, 68, 68, 0.719);
}

button {
    margin-top: 20px;
    padding: 5px 15px 5px 15px;
    border: none;
    border-radius: 6px;
    background-color: black;
    color: white;
    transition-duration: 0.7s;
}

#pwd {
    margin-bottom: 0;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

a {

    text-decoration: none;
    color: #006666;
    transition-duration: 1s;
}

a:hover {
    text-decoration: underline;
    color: #ff9999;
}

h4 {
    margin: 0 0 10px 0;  
}

p {
    margin: 30px 0 0 55px;
    width: 250px;
    font-size: 13px;
}

span p {
    margin-top: 5px;
    font-size: 9px;
}

#logger, #signup {
    display: none;
}

@media(max-width: 450px){
    body{
        width: 100vw;
        height: 100vh;
        background: white;
    }
    
    #intro_container {
        display: flex;
        height: 60%;
        justify-content: center
    }
    
    #intro_cover {
        background: none;
        display: block;
        width: 365px;
        text-align: center;
    }
    
    #form_container {
        width: 250px;
        margin-left: 55px;
        padding-top: 20px;
        padding-bottom: 20px;
        box-shadow: 0 0 3px black;
    }
}