@font-face {
	font-family: 'rude';
	src: url('./assets/Rude.ttf');
}

html {
    font-family: 'rude', 'Roboto', sans-serif;
    color: white;
    height: 100%;
    width: 100%;
    background-color: black;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.topbar {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: xx-large;
    padding: 40px;
    z-index: 1000;
}

.topbar__title {
    text-align: center;
    padding-bottom: 10px;
}

.topbar__links {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    font-size: large;
    flex-wrap: wrap;
}

.topbar__links>a {
    padding-left: 5px;
    padding-right: 5px;
}

.gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.gallery__section {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
}

.section__cave {
    background-image: url("./assets/cave.jpeg");
}

.section__dive {
    background-image: url("./assets/dive.jpg");
}

.section__mountain {
    background-image: url("./assets/mountain.jpeg");
}

.section__nature {
    background-image: url("./assets/nature.jpeg");
}

.section__title {
    font-size: x-large;
    background-color:rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.description {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    padding: 30px;
}

.footer {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    font-size: large;
    flex-wrap: wrap;
    padding: 20px;
}

.footer__links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.footer__links>a {
    padding-left: 5px;
    padding-right: 5px;
}
