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.

225 lines
3.3 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);
}
* {
overflow-x: hidden;
}
body {
font-family: Montserrat;
scroll-behavior: smooth;
margin: 0 0;
padding: 0 0;
width: 100%;
height: 100%;
}
.nav {
width: 100%;
z-index: 9001;
background-color: #212529;
position: fixed;
top: -2%;
left: 0;
}
.nav a {
text-decoration: none;
color: inherit;
letter-spacing: 0px;
transition: .2s linear;
}
.nav a:hover {
letter-spacing: 12px;
}
.nav>h3 {
font-size: 1.25em;
color: #81d742;
font-family: VG5000;
width: fit-content;
}
.menu {
display: none;
width: fit-content;
margin: auto;
color: white;
font-weight: lighter;
}
.landingimage {
background: url("images/postcard.jpg");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
width: 100vw;
height: 600px;
}
.imagedescription {
display: none;
}
h1,
h2,
h3 {
font-family: VG5000;
}
h1 {
font-size: clamp(1.5rem, 1rem + 9vw, 6rem);
}
h2 {
font-size: 2.5rem;
margin: 0 0;
}
p {
font-size: larger;
}
.index {
background: #81d742;
width: 100%;
}
.index>* {
padding: 2%;
max-width: 70ch;
text-align: center;
margin: auto;
}
.tours {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 50px;
max-width: 2000px;
gap: 2rem;
}
.tourcard {
position: relative;
flex-basis: 50%;
max-width: 30%;
flex-grow: 1;
}
.tourcard>img {
width: 100%;
}
.tour-text {
position: absolute;
width: 80%;
bottom: 8%;
left: 8%;
padding: 2%;
font-family: Montserrat;
font-size: .7em;
background: white;
}
.reviews {
width: 90vw;
text-wrap: wrap;
}
.review>p {
margin-left: 2%;
}
.review:nth-child(odd) {
background-color: #ececec;
}
@media only screen and (min-width: 801px) {
.nav {
width: 90vw;
max-width: 1500px;
z-index: 9001;
display: flex;
align-items: center;
position: fixed;
left: 5vw;
}
.nav>h3 {
color: #81d742;
padding-left: 2%;
font-family: VG5000;
}
.menu {
width: 80%;
display: flex;
color: white;
font-weight: lighter;
justify-content: space-evenly;
background-color: rgba(0, 0, 0, 0);
}
.imagedescription {
display: block;
background: rgba(5, 5, 5, 0.3);
position: relative;
top: 92%;
left: 2%;
padding: 4px;
width: fit-content;
color: rgba(255, 255, 255, 0.7);
pointer-events: none;
}
}
.container {
max-width: min(1200px, calc(100vw - 2rem));
margin: 0 auto;
}
section {
margin: 3rem 0;
}
@keyframes slide {
0%, 80% {
transform: translateX(200%);
}
100% {
transform: translateX(0);
}
}
footer.annoying {
animation-fill-mode: forwards;
position: fixed;
bottom: .5rem;
right: .5rem;
background-color: #81d742;
animation: slide 10s ease-in-out;
padding: .5rem;
font-size: 16px;
}