@import url('https://fonts.googleapis.com/css2?family=Ranga&family=Saira+Stencil+One&display=swap');

*, *::before, *::after{
    box-sizing: border-box;
}

body{
    padding: 0;
    margin: 0;
    background-color: #D1A60B;
    background-image: linear-gradient(#D1A60B,#ffffff);
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-size: 1.2rem;
    min-height: 100vh;
    color: #232939;
    font-family: Saira Stencil One, sans-serif;
}

.full-height-grow{
    display: flex;
    flex-direction: column;
}

.brand-logo{
    display: flex;
    align-items: center;
    font-size: 1.25em;
    color: inherit;
    text-decoration: none;
}

.brand-logo-name{
    margin-left: 1rem;
    
}

.main-nav ul, .footer-nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav a, .footer-nav a{
    color: inherit;
    text-decoration: none;
    padding: 1rem;
    font-family: inherit;
}


.main-nav a:hover{
    color: #ffffff;
}
.footer-nav a:hover{
    color: black;
}

.main-header, .main-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.main-header{
    height: 140px;
}

.main-footer{
    height: 70px;
    color: #ffffff;
    background-color: #7E5151;
}

.main-footer .container{
    display: flex;
    justify-content: space-between;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    flex-grow: 1;
}

.title{
    font-weight: 500;
    font-size: 3em;
    margin-bottom: 1rem;
    margin-top: 0;
    color: #581212;
}

.subtitle{
    font-weight: 500;
    font-size: 2em;
    margin-bottom: 2rem;
    font-family: Ranga, sans-serif;
}

.btn{
    color: #ffffff;
    background-color: #232939;
    padding: .7rem 1.5rem;
    border-radius: .5rem;
    text-decoration: none;
    font-size: 1.2em;
    outline: none;
    border: none;
    cursor: pointer;
}

.btn:hover{
    background-color:#254087;
}

.btn:focus{
    background-color:#51555f;
}