* {
    box-sizing: border-box;
    margin: 0;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

.backgroundPhoto {
    background-image: url('./img/background-3616101_1280.jpg');
    background-position: center;
    background-size: cover;
    min-height: 100vh;
}

.imgContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    overflow-y: scroll;
}

.imgContainer img {
    height: 200px;
    width: 200px;
    margin: 45px;
    cursor: pointer;
    border: 8px solid rgb(120, 213, 180);
    filter: drop-shadow(1rem 1rem 4px #ccc);
    padding: 2rem 2rem 5rem 2rem;
    border-radius: 20px;
}

.imgContainer img:hover {
    transform: scale(1.1);
}

.image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: black;
    height: 100vh;
    top: 0;
}

.image img {
    width: 70vw;
    height: 70vh;
    object-fit: cover;
    border-radius: 20px;
}

.image:hover {
    transform: scale(1);
}

.imageColumn {
    display: flex;
    justify-content: center;
    flex: 33.3333%;
}

.buttonStyle {
    margin-top: 20px;
    justify-content: space-around;
}

.footer {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 24px;
    gap: 10px;
    color: black;
    font-weight: 400px;
    font-family: 'Lato';
    overflow-y: scroll;
}

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

a:hover {
    color: greenyellow;
}

/* lato-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/lato-v24-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* lato-italic - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: italic;
    font-weight: 400;
    src: url('./fonts/lato-v24-latin-italic.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@media (max-width: 345px) {
    .imgContainer {
        display: flex;

        aspect-ratio: 1 / 1;
    }
}

::-webkit-scrollbar {
    width: 0px;
}

.d-none {
    display: none;
}