@font-face {
    font-family: 'BodoniModa';
    src: url('./fonts/BodoniModa.ttf');
}

@font-face {
    font-family: 'Domine';
    src: url('./fonts/Domine.ttf');
}

body {
    font-family: "Domine", sans-serif;
    line-height: 1.5;
    //font-weight: bold;
    margin: 0;
    --opacity: 0.9;
}

html, body { 
  scroll-behavior: smooth;
}
.title {
    font-size: 48px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    
    min-height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

main {
    display: flex;
    flex-flow: column;
    height: content-box;
}

.center-rec {
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, var(--opacity)), rgba(255, 255, 255, var(--opacity)));
    width: fit-content;
    padding: 20px;
    width: min(80vw, 700px);
}

nav > ul{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: center;
    list-style-type: none;
    margin: 0 auto;
}

nav a {
    color: black;
    text-decoration: none;
}

#home {
    background-image: url('img/ice-1.jpg');
}

#about {
    background-image: linear-gradient(rgba(44, 44, 46, 0.2), rgba(44, 44, 46, 0.2)), url('img/ice-3.jpg');
}

#menu {
    background-image: url('img/ice-2.jpg');
}

#faq {
    background-image: url('img/ice-4.jpg');
}

.qa {
    text-align: left;
}

.qa h3 {
    margin-bottom: 5px;
}

.qa p {
    margin-top: 0px;
}

.dual_column {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.dual_column > div {
    margin-right: 20px;
    margin-left: 20px;
    flex: 40%;
}

.item {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    text-align: left;
}

.item > p:first-child {
    margin-right: 10px;
}

.item > p:last-child {
    font-weight: bold;
}

nav > ul {
    padding-left: 0px;
}
