body {
    font-family: 'Cookie', cursive;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


.body{
    background-image: url(back.png);
}
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
img{
    object-fit: cover;
}

#header {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    font-family: 'Cookie',cursive;
    font-weight: bolder;
}

#header h1 {
    background-color: rgba(172, 128, 18, 0.54);
    padding: 15px 25px;
    position: relative;
    z-index: 1;
}

#header .img-container {
    width: 200px;
}

#header .img-container img {
    width: 100%;
}

#header .img-container:hover {
    transform: scale(1.5);
    transition: 0.4s;
}

.link-container {
    width: fit-content;
    margin: 200px auto;
    position: relative;
    z-index: 1;
}

.link-container a {
    text-decoration: none;
    color: black;
    display: inline-block;
    font-size: 30px;
    background-color: goldenrod;
    padding: 10px 20px;
    display: inline-block;
    margin: 10px 16px;
}

.link-container a:hover {
    transform: scale(1.2);
    transition: 0.2s;
}

main .img-container {
    width: 400px;
    display: inline-block;
    margin: 10px;
    align-items: center;
    
}

.img-container img {
    width: 100%;
    object-fit: cover;
    height: 230px;
}

main .img-container:hover {
    transform: scale(1.5);
    transition: .4s;
}
.home{
    background-image: url(back.png);
}
