* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

body {
    min-height: 100vh;
}

.content {
    min-height: 80vh;
    background-color:#d4cfcf;
}

header, footer {
    height: 10vh;
    background-color: brown;
    display: flex;
}

.label-container {
    margin: auto;
}

.site-label {
    font-family: Dancing Script;
    font-size: 7vh;
    font-weight: 900;
    color: #d4cfcf;
    text-decoration: none;
}

.site-label:hover {
    color: black;
}

.home-page-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15vh;
    margin-left: 10vh;
    padding-top: 15vh;
    padding-bottom: 5vh;
}

.home-page-content, .home-page-images {
    height: 60vh;
    width: 83vh;
}

.home-page-images {
    position: relative;
}

.home-page-image-1, .home-page-image-2, .home-page-image-3 {
    position: absolute;
    width: 60%;
    height: auto;
    border: 3px black solid;
    /* top: 5vh; */
    /* right: 20vh; */
    margin: auto;
}

.home-page-image-1 {
    transform: rotate(-40deg);
    left: 5vh;
}

.home-page-image-2 {
    transform: rotate(-10deg);
    left: 17vh;
}

.home-page-image-3 {
    transform: rotate(10deg);
    left: 27vh;
}

.content-about-site {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 6vh;
    text-align: center;
    font-weight: 600;
    margin-top: 3vh;
}

.content-about-site-container {
    margin: auto;
}

.link-gallery-image {
    color: maroon;
    font-size: 3vh;
    font-weight: 400;
    text-decoration-line:underline;
    /* margin-left: 22vh;
    padding-top: 5vh; */
    text-align: center;
    display: block;
    margin: 0 auto;
    margin-top: 3vh;
}

.link-gallery-image:hover {
    color: rgb(38, 8, 110);
}

.pictures-list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10vh;
    margin-left: 10vh;
    margin-right: 10vh;
    padding-top: 5vh;
    padding-bottom: 5vh;
}

.pictures-list-content {
    display: block;
    margin: auto;
}

.pictures-list-image {
    width: 40vh;
    border-radius: 20%;
}

.pictures-list-image-name {
    text-align: center;
    font-size: 3vh;
    font-weight: 600;
}

.bot-image {
    background-image: url(../images/out-6.png);
    background-size: cover;
    position: relative;
    height: 100vh;
}

.error-message {
    width: 30%;
    height: 50%;
    margin-left: 100vh;
    padding-top: 30vh;
}

.status-code {
    font-size: 20vh;
    color: rgb(92, 91, 91);
    text-align: center;
}

.message {
    font-size: 15vh;
    color: rgb(92, 91, 91);
}