@import url('https://fonts.googleapis.com/css2?family=Jersey+10&display=swap" rel="stylesheet');

html {
    background-color: rgb(236, 236, 236);
    font-family: "Jersey 10", sans-serif;
}

h1 {
    font-weight: 500;
    margin-bottom: 0;
    font-size: 70px;
}

h2{
    margin-top: 0;
    font-weight: 200;
    margin-bottom: 10;
}

h3 {
    margin-top: 0;
    font-weight: 160;
}

.topnav {
    background-color: #FFD9DA;
    border: 1px dotted #EA638C;
    overflow: hidden;
    position: sticky;
    top: 0;
}

.topnav a {
    float: left;
    color: #1B2021;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
    
}

.topnav a:hover {
    background-color: #30343F;
    color: white;
    transition: 0.3s;
}

.topnav a.active {
    background-color: #30343F;
    color: white;
}

.topname {
    color:#30343F;
    margin-left: 40px;
    font-size: 30px;
}

.itembox {
    color: white;
    background-color: #30343F;
    width: 90%;
    height: 200px;
    margin: auto;
    border-radius: 10px;
    border: 7px solid #FFD9DA;
    padding: 20px;
    font-size: 35px;
    margin-bottom: 40px;
}

.itembox a.active {
    color: white;
    text-decoration: none;
}

.itembox a:hover {
    color: #EA638C;
    transition: 0.3s;
}


.contact {
    margin-bottom: 0;
    font-size: 30px;
    font-weight: 160;
    color:#EA638C;
    text-decoration: none;
}

.contact a:hover {
    color:#30343F;
    transition: 0.3s;
    
}

div.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

div.galleryitem {
    margin: 5px;
    width: calc(40% - 20px); 
}

div.galleryitem img {
    width: 100%;
    height: auto;
    border: 3px solid #ccc;
}

@media only screen and (max-width: 768px) {
    div.galleryitem {
        width: calc(100% - 20px);
    }
}

@view-transition {
  navigation: auto;
}