You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

116 lines
1.6 KiB
CSS

@font-face {
font-family: Montserrat;
src: url(fonts/Montserrat-VariableFont_wght.ttf);
}
@font-face {
font-family: Montserrat-italic;
src: url(fonts/Montserrat-Italic-VariableFont_wght.ttf);
}
@font-face {
font-family: VG5000;
src: url(fonts/VG5000-Regular.otf);
}
body{
font-family: Montserrat;
}
.nav{
width: 80vw;
z-index: 9001;
display: flex;
background-color: #212529;
justify-content: space-around;
align-items: center;
position: fixed;
left: 10vw;
}
.nav>h3{
color: #81d742;
padding: .5em;
font-family: VG5000;
}
.nav>h4{
color: white;
font-weight: lighter;
}
.landingimage{
background: url("images/breda.JPG");
background-size: 100vw 600px;
background-repeat: no-repeat;
width: 100vw;
height: 600px;
}
.imagedescription{
background: rgba(5, 5, 5, 0.3);
position: relative;
top: 93%;
left: 2%;
padding: 4px;
width: fit-content;
color: white;
}
h1{
font-family: VG5000;
font-size: 4em;
}
p{
font-size: larger;
}
.index{
background: #81d742;
}
.index>*{
padding: 10px;
max-width: 50ch;
text-align: center;
margin: auto;
}
.tours{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-top: 50px;
}
.tourcard{
position: relative;
width: 33%;
min-width: 350px;
max-width: 500px;
margin-bottom: 50px;
}
.tourcard >img{
width: 90%;
}
.tour-text{
position: absolute;
bottom:5%;
left: 5%;
padding: 5%;
font-family:Montserrat;
font-size: .7em;
background: white;
width: 70%;
}