* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Gochi Hand', cursive;
    font-family: 'Patrick Hand', cursive;
}

@font-face {
    font-family: 'patrick_handregular';
    src: url('patrickhand-regular-webfont.woff2') format('woff2'), url('patrickhand-regular-webfont.woff') format('woff');
    font-weight: bold;
}


/*========================================= My Classes ===================================*/

.text-center {
    text-align: center;
}


/*========================================= My Styles ===================================*/

body {
    height: auto;
    background: url('../images/earth-background.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.container {
    width: 350px;
    height: 450px;
    display: block;
    margin-top: 50%;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    border: 1px solid #ee5253;
    border-radius: 20px;
    box-shadow: 2px 2px 22px 1px #ee5253;
}

.logo-ask {
    width: 200px;
    height: 50px;
    cursor: pointer;
}

.inputs {
    margin-top: 20px;
}

input[type="text"],
input[type="password"],
input[type="submit"] {
    width: 100%;
    padding: 12px 16px;
    margin-top: 20px;
    display: inline-block;
    border: 2px solid #ee5253;
    background-color: black;
    color: crimson;
    border-radius: 7px;
}

input[type="submit"] {
    background-color: #ee5253;
    font-weight: bold;
}

input[type="text"]:hover,
input[type="password"]:hover {
    border-color: #ee5253;
    box-shadow: 2px 2px 22px 1px #ee5253;
}

input[type="text"]::before,
input[type="password"]::before {
    color: #ee5253;
    background-color: black;
}

input[type="submit"]:hover {
    background-color: rgb(255, 62, 83);
    cursor: pointer;
}

.inputs a {
    font-size: 18px;
    font-weight: bold;
    color: rgb(255, 62, 83);
    text-decoration: none;
    margin-top: 30px;
}

.social-media {
    height: 100px;
    width: 100%;
    display: inline-block;
    margin-top: 20px;
}

.social-media img {
    height: 60px;
    width: 60px;
    padding: 10px;
    cursor: pointer;
}


/*========================================= My Media ===================================*/

@media (max-width: 767px) {
    .container {
        margin-top: 70px;
    }
}

@media (min-width: 768px) {
    .container {
        margin-top: 80px;
    }
}

@media (min-width: 992px) {
    .container {
        margin-top: 60px;
    }
}

@media (min-width: 1200px) {
    .container {
        margin-top: 5%;
    }
}