/* importing google fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Romanesco&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Freehand&display=swap');

/* font-family: 'Roboto', sans-serif; */
/* font-family: 'Freehand', cursive; */
/* font-family: 'Romanesco', cursive; */
/* color: rgb(44, 44, 159); */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

body {
    position: relative;
}

img {
    max-width: 100%;
    display: block;
    margin: auto;
}

.boat-image {
    position: absolute;
    z-index: -1;
    height: 170vh;
    object-fit: cover;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.center-container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}
