@font-face {
    font-family:'Pirulen';
    src: url(font/pirulen.otf);
}

@font-face {
    font-family:'Paul Grotesk';
    src: url(font/paulGrotesk.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Paul Grotesk', sans-serif;
}

h1, h3 {
    font-family: 'Pirulen', sans-serif;
    text-transform: uppercase;
}

.container { 
    background: linear-gradient(rgba(0,0,0,0.2), rgb(0, 0, 20)), url(img/background.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    padding: 20px 6%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.row {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 60px;
}

.row h3 {
    font-size: 20px;
    letter-spacing: 2px;
}

.row h1 {
    font-size: 50px;
    letter-spacing: 2px;
    margin-top: 5px;
} 

.row p {
    font-size: 16px;
    padding: 15px; 
    max-width: 500px;
}


input {
    height: 40px;
    width: 200px;
    margin: 5px;
    padding: 0px 10px;
    border-radius: 10px;
    background-color: #373e49; 
    color: white;
    font-size: 16px;
    border: none;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
 }
 
 button {
    height: 40px;
    width: 90px;
    border-radius: 10px;
    border: none;
    font-size: 12px;
    font-family: 'Pirulen', sans-serif;
    color: white;
    background-image: linear-gradient(to right, rgb(162,0,255), rgb(74,15,236));
    transition: 0.8s;
 }

 a {
    height: 40px;
    width: 90px;
    padding: 12px 5px;
    border-radius: 10px;
    border: none;
    font-size: 12px;
    text-decoration: none;
    font-family: 'Pirulen', sans-serif;
    color: white;
    background-image: linear-gradient(to right, rgb(162,0,255), rgb(74,15,236));
    transition: 0.8s;
 }

input:hover {
    background-color: #47505f;
 }
 
 input:focus {
    outline: none;
 }
 
 input::placeholder {
    color: rgb(159, 161, 190);
 }
 
 button:hover {
    background-image: linear-gradient(rgb(162,0,255), rgb(74,15,236));
 }

/* Responsive */

@media (max-width: 750px) {

    .row h3 {
        font-size: 16px;
        letter-spacing: 2px;

    }
    
    .row h1 {
        font-size: 40px;
        letter-spacing: 2px;
        margin-top: 5px;
    } 

    .row p {
        font-size: 13px;
        padding: 15px; 
        max-width: 400px;
    }

    input {
        height: 32px;
        width: 160px;
        font-size: 13px;
    }

    button {
        height: 32px;
        width: 72px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .row p {
        font-size: 13px;
        padding: 15px; 
        max-width: 30px;
    }
}