@font-face {
    font-family: 'futura-lt';
    src: url(./font/futura-lt.ttf) format("truetype");
 }

 @font-face {
    font-family: 'futura';
    src: url(./font/futura.ttf) format("truetype");
 }


* {
    font-family: 'futura-lt';
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    background-color: white;
}

#mainPage {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#title {
    border-left: solid 3px #a72e26;
    position: fixed;
    left: 34px;
    background-color: transparent;
    padding-left: 10px;
    transition-duration: 0.2s;
}

#title h2 {
    margin-bottom: 30px;
    transition-duration: 0.2s;
}


#title a {
    font-size: 14px;
    transition-duration: 0.2s;
}

#title a {
    color: #a72e26;
    transition-duration: 0.2s;
    margin-top: 30px;
}

#title p {
    font-size: 14px;
    transition-duration: 0.2s;
}

#title p {
    color: #a72e26;
    transition-duration: 0.2s;
}

h1, h2 {
    color: #a72e26;
    background-color: transparent;
}

h2 {
    margin-top: 10px;
    transition-duration: 0.2s;
}

#content {
    margin: 60px 160px 0px 160px;
    position: relative;
    display: flex;
    flex-direction: column;
}

#video, #photos {
    margin-top: 0px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#photos {
    margin-top: 60px;
}

.photo {
    width: 260px;
    height: 260px;
    margin: 12px;
    transition-duration: 0.4s;
    overflow: hidden;
}

.photo:hover .photo-title {
    color: #365368;
    background-color: #b8dbf3d2;
    transition-duration: 0.4s;
}

img {
    width: 100%;
}

.photo-title {
font-family: 'futura';
    background-color: transparent;
    color: transparent;
    display: flex;
    position: absolute;
    width: 260px;
    height: 260px;
    transition-duration: 0.2s;
    text-align: center;
    font-size: 24px;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.bubble {
    position: absolute;
    transform: translateY(220px);
    background-color: transparent;
    width: 80px;
    height: 80px;
    transition-duration: 0.2s;
    border-radius: 50% 50% 0% 0%;
}

.photo:hover .bubble {
    background-color: white;
    transition-duration: 0.2s;
}

#zoom {
    position: fixed;
    top : 0;
    right: 0;
    bottom: 0;
    left: 0;
    scale: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 0.25s;
}

#zoomImg {
    width: auto;
    height: 100%;
    padding: 60px;
}

#quitZoom {
    font-size: 58px;
    position: absolute;
    right: 40px;
    top: 20px;
    cursor: pointer;
}

