@font-face {
    font-family: 'Helvetica';
    src: url('../src/fonts/Helvetica Rounded Bold.otf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Helvetica-Oblique';
    src: url('../src/fonts/Helvetica-Oblique.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Rodin-Himawari';
    src: url("../src/fonts/FOT-RodinHimawari Pro EB.otf") format("opentype");
}

body {
    background-color: antiquewhite;
}

nav {
    font-family: 'Rodin-Himawari', sans-serif;
    color: #34312D
}

nav.logo {
    font-size: 40px;
    color: #34312D;
}

.seperator-line {
    width: 100%;
    height: 3px;
    background-color: #A0A0A0;
}

button {
    font-family: 'Helvetica', sans-serif;
}

.headline {
    font-family: 'Helvetica', sans-serif;
    font-size: 70px;
    font-weight: bolder;
    background-color: transparent !important;
}

.sub-headline {
    font-family: 'Helvetica', sans-serif;
    font-size: 30px;
    font-weight: normal;
}

/* Hover and focus styling for navbar links so users get clear feedback */
.navbar-link-property:hover{
    background-color: #34312D;
    color: white
}

/* Apply to Bootstrap nav links used in this project */
.navbar-nav .nav-link{
    transition: background-color .15s ease, color .15s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus{
    background-color: #58534d;
    color: #ffffff !important; /* !important to override color inheritance if needed */
    cursor: pointer;
}

.helvetica-font{
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
    letter-spacing: 3px;
}