* {
    padding: 0;
    margin: 0;
    font-family: 'Inter';
}

body {
    height: 100vh;
    width: 100vw;
}

.index-background {
    position: absolute;
    width: 100%;
    height: 100vh;
    background: rgb(238,174,202);
    background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
}

.index-header {
    font-size: 30px;
    display: flex;
    width: 100%;
    height: 10vh;
    position: absolute;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.027);
    line-height: 10vh;
}

.header-main {
    margin-right: 5%;
    margin-left: 5%;
}

.main-img {
    height: 10vh;
}

.header-photos {
    color: rgba(0, 0, 0, 0.699);
    text-decoration: underline;
    text-decoration-color: transparent;
    font-size: 1em;
    font-weight: 700;
    transition: 500ms;
    text-align: center;
    margin-right: 5%;
}

.header-photos:hover {
    text-decoration-color: rgba(0, 0, 0, 0.699);
}

.header-videos {
    color: rgba(0, 0, 0, 0.699);
    text-decoration: underline;
    text-decoration-color: transparent;
    font-size: 1em;
    font-weight: 700;
    transition: 500ms;
    text-align: center;
    margin-left: 5%;
}

.header-videos:hover{
    text-decoration-color: rgba(0, 0, 0, 0.699);
}

.index-gallery {
    top: 30vh;
    display: flex;
    position: absolute;
    width: 100%;
    justify-content: center;
}

.gallery-photo {
    width: auto;
    height: 14vw;
    margin: 0.1vw;
    border: 0.1vh solid #cccccc00;
    object-fit: cover;
    opacity: 50%;
    transition: 500ms;
}
  
.gallery-photo:hover {
    border: 1px solid #777;
    opacity: 100%;
}
  
.index-gallery img {
    object-fit: cover;
    height: 100%;
}