:root{
    --main-color:gold;
    --secondary-color:black;
    --alternate-color:#ffe8d4;

    --main-text-color:black;
    --alternate-text-color:#ffe8d4;

    --title-font:'dk_longreach';
    --text-font:'Montserrat', sans-serif;
    /* --text-font:'Asap', sans-serif; */
}

@font-face {
	font-family: 'dk_longreach';
	src: url(../font/DK\ Longreach.otf);
}

body{
    width:100vw;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    font-family: var(--text-font);
    font-size: 1.25rem;
}

.cover-container{
    position: relative;
    width: 100%;
    height: 625px;
    min-height: 60vh;
}

.middle.cover-container{
    height:70vh;
}

.dim-screen{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .5;
    z-index: 1;
}

.cover-item{
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/group-kids-friends-arm-around-sitting-together.jpg);
}

.container{
    position: relative;
    width: 80%;
    height: fit-content;
    margin: auto;
}

.container.top-bar{
    border-top: 5px solid var(--secondary-color);
}

.title{
    width: fit-content;
    margin: 0 auto 40px;
    padding-top: 70px;
    font-family: var(--title-font);
    font-size: 4rem;
    color: var(--secondary-color);
}


.transition{
    position: absolute;
    width: 100%;
    height: 50px;
    background-size: cover;
    background-repeat: no-repeat;
}

.transition.top{
    top: -40px;
    background-image: url(../images/transition.png);
}

.transition.top.alternate-color{
    top: -40px;
    background-image: url(../images/transition_alternate_color.png);
}

.transition.bottom{
    bottom: -40px;
    background-image: url(../images/transition_bottom.png);
    background-position: bottom;
}

.transition.bottom.alternate-color{
    bottom: -40px;
    background-image: url(../images/transition_bottom_alternate_color.png);
    background-position: bottom;
}

.action-button{
    margin: 3vh 0;
    width: fit-content;
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: var(--main-color);
    border: 3px solid var(--secondary-color);
    border-radius: 10px;
    cursor: pointer;
}

.action-button:hover,
.action-button.alternate-color:hover{
    background-color: transparent;
    color: var(--secondary-color);
    border: 3px solid var(--secondary-color);
}

.action-button-with-icon{
    display: flex;
    margin: 3vh 0;
    width: fit-content;
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: var(--main-color);
    border: 3px solid var(--secondary-color);
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
}

.action-button-with-icon > i{
    margin-left: 20px;
}

.action-button-with-icon:hover,
.action-button-with-icon.alternate-color:hover{
    background-color: transparent;
    color: var(--secondary-color);
    border: 3px solid var(--secondary-color);
}

.action-button.alternate-color, 
.action-button-with-icon.alternate-color{
    color: var(--alternate-color);
}

@media (max-width: 600px){
    body{
        font-size: 12px;
    }

    .container{
        width: 90%;
    }

    .title{
        text-align: center;
        font-size: 2rem;
    }

    .action-button,
    .action-button-with-icon{
        padding: 8px 16px;
    }
}