* {
    box-sizing: border-box;
}

body {
    background-color: #fefefe;
}

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

header {
    display: flex;
    column-gap: 20px;
}

header img {
    max-width: 180px;
    max-height: 180px;
    margin-left: 5%;
}

/* menu */

.menu {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
    font-family: Avenir, Arial, sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: black;


}

.menu_button {
    all: unset;
    margin: 30px;
    margin-left: 100px;
    margin-right: 0;
    padding: 10px;
    transition: letter-spacing 0.4s;
}

.menu_items {
    display: none;
    text-align: left;
    width: 100%;

}

.menu_items li {
    list-style-type: none;
    display: inline-block;
    text-align: center;
    width: 100px;
    margin: 30px;
}

.menu_items a {
    text-decoration: none;
    transition: letter-spacing 0.4s;
}


/* menu behaviour */

.menu_button:hover+.menu_items {
    display: block;
}

.menu_button:hover+.menu_items:hover,
.menu_items:hover {
    display: block;
}

.menu_items a:hover {
    letter-spacing: 2.5px;
    color: #583889;
}

.menu_button:hover {
    letter-spacing: 2.5px;
    color: #583889;
}


/* welcome */

#welcome {
    display: flex;
    margin-bottom: 100px;
}

/* heros */
.hero,
.hero_contact {
    width: 50%;
}

.hero_about {
    width: 80%;
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.hero_art,
.hero_photos {
    width: 50%;
    overflow: hidden;
}

.hero_art img,
.hero_photos img {
    transform: scale(1.3);
}

/* text next to heros*/
.header_txt {
    width: 45%;
    margin-top: 200px;
    text-align: center;
}

.header_txt img {
    width: 100px;
    overflow: hidden;
}

/* header styling */

h1 {
    font-family: avenir, arial, sans-serif;
    font-size: 90px;
    text-align: center;
    margin: 10px;
}

h2 {
    font-family: avenir, arial, sans-serif;
    font-size: 50px;
    text-align: center;
    margin: 10px;
}

h3 {
    font-family: avenir, arial, sans-serif;
    font-size: 40px;
    text-align: center;
    margin: 10px;
}

/* page content */
#page_txt {
    margin-top: 280px;
    margin-bottom: 380px;
}

#page_txt p {
    font-family: newsreader;
    font-size: 20px;
    margin-left: 400px;
    margin-right: 400px;
    line-height: 25px;

}

/* about page content */

#about_page_txt {
    margin-top: 200px;
    margin-bottom: 200px;
    text-align: center;
}

#about_page_txt h1 {
    text-align: center;
    width: 100%;
}

#about_page_txt img {
    width: 40%;
    transform: scale(1.3);
    display: inline-block;
    vertical-align: middle;
}

#about_page_txt p {
    font-family: newsreader;
    font-size: 20px;
    width: 35%;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    line-height: 25px;

}

#about_page_txt h3 {
    margin-top: 200px;
    margin-bottom: 50px;
}

/* photo page content */

#photo_gallery {
    width: 80%;
    margin: 100px auto;
    columns: 400px;
    gap: 20px;
    position: relative;
}

#photo_gallery img {
    width: 100%;
    border-radius: 10px;
    margin: 10px;
    transition: transform 0.3s;
}

#photo_gallery img:hover {
    transform: scale(1.06);
}

#photo_gallery img:active {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90%;
}

/* art page content */

#art_gallery {
    width: 80%;
    margin: 100px auto;
    columns: 2;
    gap: 20px;
    position: relative;
}

#art_gallery img {
    width: 100%;
    border-radius: 10px;
    margin: 10px;
    transition: transform 0.3s;
}

#art_gallery img:active {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90%;
}

#tunnel_book {
    width: 80%;
    margin: 100px auto;
    text-align: center;
    font-family: newsreader;
}

#tunnel_book h2,
#tunnel_book p {
    text-align: center;
    margin: 20px auto;
    width: 70%;
}

#tunnel_book img {
    width: 60%;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

#tunnel_book img:hover {
    transform: scale(1.05);
}

#snowboard {
    width: 80%;
    margin: 100px auto;
    text-align: center;
    font-family: newsreader;
}

#snowboard h2 {
    font-family: avenir, sans-serif;
    font-size: 40px;
    margin-bottom: 20px;
}

#snowboard img {
    width: 35%;
    margin: 20px;
    border-radius: 10px;
    display: inline-block;
    vertical-align: top;
    transition: transform 0.3s;
}

#snowboard img:hover {
    transform: scale(1.05);
}






/* contact page content */
#subscription {
    width: 50%;
    margin: 300px auto;
    font-family: avenir, sans-serif;
    font-size: 20px;
    text-align: center;
}

#subscription h2 {
    margin-bottom: 20px;
}

.form_grp {
    margin: 20px;
    text-align: center;

}

.form_grp label {
    margin-right: 10px;
}

.form_grp input {
    font-family: avenir, sans-serif;
    font-size: 20px;
    border: solid #d7ccbb7f;
    background-color: white;
}

button {
    all: unset;
    font-family: Avenir, sans-serif;
    font-weight: 500;
}

button:hover {
    color: #583889;
}

/* footer styling */
footer p {
    text-align: center;
    font-family: newsreader;
    font-size: 15px;
}