:root {
    --background-color: rgb(255, 255, 255);
    --background-color-transperent: rgba(255, 255, 255, 0.9);
    --font-color: #000000;
    --hover-color: rgb(126, 0, 199);
    --design-color: rgb(11, 24, 200);
}

.contentfirst{
    height: 100%;
    width: 100%;
    padding: 1%;
}

.contentfirst-title-box{
    position: absolute;
    left: 0;
    text-align: center;
    display: flex;
	align-items: center;
	justify-content: center;
    height: 12vh;
    width: 40vw;
    margin-top: 7vh;
    margin-left: 7vw;
}

.contentfirst-title{
    font-family: 'Lobster', cursive;
    color: white;
    font-size: max(max(min(4vw, 5.5rem), 3rem), 4.5vh);
    text-shadow: 5px 5px 6px rgb(0, 0, 0), 0 0 4em black;
}

.contentfirst-phrase-box{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -80%);
    display: flex;
	align-items: center;
	justify-content: center;
    text-align: center;
    height: 15vh;
    width: 30vw;
    margin-right: 8%;
}

.contentfirst-phrase{
    font-family: 'Lobster';
    font-size: max(max(min(3vw, 5rem), 1rem), 3vh);
    color: white;
    text-shadow: 4px 4px 1px rgba(0, 0, 0, 0.7), 0 0 1em black, 0 0 6em black;
}

.contentfirst-button{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    margin-bottom: 2%;
    padding: 1rem;
    width: 18rem;
    height: 6rem;
    border-radius: 5rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
	align-items: center;
	justify-content: center;
}

.contentfirst-button-text{
    font-family: 'Lobster';
    font-weight: 600;
    font-size: 2.5rem;
    color: black;
}

.contentfirst-button-text:hover{
    font-size: 2.6rem;
    color: var(--hover-color);
}

@media only screen and (max-width: 850px) {
    .contentfirst-title-box{
        width: 100%;
        margin-top: 2vh;
        margin-left: 0;
    }
    
    .contentfirst-title{
        font-size: max(max(min(3vw, 4.5rem), 2rem), 3.5vh);
        text-shadow: 3px 3px 2px black, 0 0 4em black;
        }
    
    .contentfirst-phrase-box{
        transform: translate(0, -50%);
        width: 45vw;
        margin-right: 5%;
    }
    
    .contentfirst-phrase{
        font-size: max(max(min(3vw, 5rem), 1rem), 3vh);
        text-shadow: 2px 2px 2px black, 0 0 1em black, 0 0 6em black;
    }

    .contentfirst-button{
        width: 12rem;
        height: 4rem;
        border-radius: 5rem;
    }

    .contentfirst-button-text{
        font-weight: 600;
        font-size: 1.8rem;
    }

    .contentfirst-button-text:hover{
        font-size: 2rem;
    }
}