@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bitter:ital,wght@0,100..900;1,100..900&family=Calistoga&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quintessential&family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.navbar {
    font-family: 'Bitter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
}

#footbtm {
    font-family: 'bitter', sans-serif;
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

body {
    margin: 0;
    padding: 0;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../imgs/mand1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    filter: brightness(30%);
}

.hero-content {
    position: relative;
}

.hero-content {
    position: relative;
    font-family: 'Roboto', sans-serif;
    color: white;
    text-align: center;
    margin: 0.625rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 0;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 200;
    margin-top: 1rem;
}

.hero-button {
    background-color: #476078;
    background: linear-gradient(90deg, rgba(71, 96, 120, 1) 0%, rgba(71, 46, 52, 1) 50%, rgba(86, 74, 85, 1) 100%);
    color: white;
    border: 0px solid #d8d1d4;
    border-radius: 12px;
    margin-top: 10rem;
    padding: 0.9375rem 1.875rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-button:hover {
    transition: all 0.3;
    background: #476078;
    background: linear-gradient(90deg, rgba(71, 96, 120, 1) 0%, rgba(71, 46, 52, 1) 50%, rgba(86, 74, 85, 1) 100%);
    color: white;
    border: 0px solid #d8d1d4;
}