@font-face {
    font-family: "Montserrat";
    src: url(fonts/Montserrat-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: Montserrat;
    src: url(fonts/Montserrat-Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: Montserrat;
    src: url(fonts/Montserrat-Black.ttf);
    font-weight: 900;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat;
}

html {
    font-size: 25px;
}

h1 {
    font-size: 10rem;
    line-height: 10rem;
    font-weight: 900;
}

h2 {
    font-size: 3rem;
    line-height: 3rem
}

.content-bottom h2 {
    font-size: 10rem;
    line-height: 10rem;
    font-weight: 900;
    color: #6A32E2;
    position: relative;
    top: -5rem;
    text-transform: uppercase;
}

.content-top h1 {
    color: #F266CB;
    text-transform: uppercase;
}

.content-bottom {
    height: 5rem;
    overflow: hidden;
    background-color: white;
    width: 100%;
    margin-top: -1px;
    transition: 0.5s;
}

.content-top {
    height: 5rem;
    overflow: hidden;
    background-color: white;
    width: 100%;
    transition: 0.5s;
}

.header {
    height: 80vh;
    padding: 20px;
    border: #2E292A solid;
    position: relative;
    display: flex;
    align-items: center;
}

.header-bg {
    color: white;
    background-color: #2E292A;
    font-size: 4rem;
    text-align: center;
    font-weight: 900;
    letter-spacing: 0.3em;
    width: 100%;
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.header-content:hover .content-top {
    transform: translateY(-100px);
}

.header-content:hover .content-bottom {
    transform: translateY(100px);
}