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

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

.photos-background {
    position: absolute;
    width: 100%;
    height: 100vh;
    background: rgb(182,180,223);
    background: linear-gradient(0deg, rgba(182,180,223,1) 0%, rgba(184,215,165,1) 35%, rgba(189,223,230,1) 100%);
}

.photos-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);
}