@font-face{
	font-family: 'OpenSans-Regular';
    src: url('../fonts/OpenSans-Reguler.ttf');
}
@font-face{
	font-family: 'OpenSans-Bold';
	src: url('../fonts/OpenSans-Bold.ttf');
}

:root{
    --font-regular : 'OpenSans-Reguler',sans-serif;
	--font-bold : 'OpenSans-Bold',sans-serif;

    --first-color : #c5b258;
	--second-color : #0c0c30;
}

body{
    overflow: hidden;
}

h1{
    font-family:  var(--font-bold);
    font-size: 3rem;
    color: var(--first-color);
    text-align: center;
    line-height: normal;
}

h3{
    font-family: var(--font-regular);
    font-weight: normal;
    text-align: center;
    font-size: 1.5rem;
}

p{
    font-family: var(--font-regular);
    font-weight: normal;
    text-align: center
}

svg{
    max-width: 800px;
    width: 80%;
}

header img{
    max-width: 300px;
    width: 50%;
    margin: 20px;
}

.bg-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
}

.form-input input{
    border: 1px solid var(--first-color);
    padding: 15px;
    font-family: var(--font-regular);
    font-size: 1rem;
    border-radius: 5px;
    max-width: 250px;
    width: 350px;
    background: transparent;
    outline: none;
}

.form-input button{
    text-decoration: none;
    background-color: var(--first-color);
    border-radius: 5px;
    padding: 17px 25px;
    border: 1px solid var(--first-color);
    font-family: var(--font-regular);
    color: #000;
    cursor: pointer;
}

.form-input a{
    text-decoration: none;
    color: #000;

}

@media screen and (max-width: 480px){
    h1{
        font-size: 1.5rem;
    }
    h3{
        font-size: 1rem;
    }
    p{
        font-size: .8rem;
    }
    .form-input input{
        font-size: .8rem;
    }
    .form-input button{
        padding: 15px 25px;
    }
}