body {
    background-color: #e94196;
	background-image: repeating-linear-gradient(#e94196, purple 10%, #e94196 20%);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight:lighter;
}


.hide-content {
    display: none;
}

.header {
    text-align: center;
    background-image: url('https://imagedelivery.net/ufD7Y8gknCVUcAcogBQrPA/7a186a7b-713b-44ee-c197-f2b2ab264800/66');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    width: 100%;
	height: 150vw;
    margin: 0 auto;
}

.header h1 {
    font-size: 16rem;
    margin: 0;
}

.header h2 {
    font-size: 6rem;
    margin: 0;
}


.containers {
    margin-bottom: 20%;
}

.container {
    margin-left: 13%;
    margin-right: 13%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 20%;
    /* margin-bottom: 20%; */
}

.container:nth-child(even) {
    flex-direction: row-reverse;
}

.text {
    display: flex;
    justify-content: center;
    flex-direction: column;
	color: #330033;
}

.title {
    font-size: 6rem;
    line-height:1em;
	text-shadow: -1px -1px 0 pink, 0 -1px 0 pink, 1px -1px 0 pink, 1px 0 0 pink, 1px 1px 0 pink, 0 1px 0 pink, -1px 1px 0 pink, -1px 0 0 pink;
    /* margin-bottom: 8px; */
}

.description {
    font-size: 1.5rem;
    margin-top: 25px;
}

.image {
    z-index: -1;
    display: flex;
    justify-content: center;
    min-width: 50%;
}

.text, .image{
    width: 50%;
    padding: 5px;
}

footer {
    display: block;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, #e94196 0%, rgba(209,13,0,1) 100%);
    padding: 3rem 0;
}

footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12rem 0 7rem;
}

footer h3 {
    color: white;
    font-size: 2.5rem;
    text-align: center;
}

footer .bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.5rem;
}

footer .bottom > * {
    padding: 0 10px 10px 10px;
}

footer .bottom a:hover {
    color: black;
}

footer .bottom {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
	text-align: center;
}

footer .bottom p {
    font-size: 1.5rem;
}

.start-title{
	padding-top: 45%;
	padding-bottom: 20%;
}
@media (max-width: 768px) {
    body {
		background-color: #e94196;
		background-image: repeating-linear-gradient(#e94196, purple 10%, #e94196 20%);
        color: white;
        font-family: 'Outfit', sans-serif;
        font-weight: 500;
        margin: 0;
    }

    .header {
        text-align: center;
        background-image: url('https://imagedelivery.net/ufD7Y8gknCVUcAcogBQrPA/7a186a7b-713b-44ee-c197-f2b2ab264800/66');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top;
        width: 100%;
		height: 150vw;
        margin: 0 auto;
    }
    
    .header h1 {
        font-size: 10rem;
        margin-top: 0;
        margin-bottom: 0.5rem;
    }
    
    .header h2 {
        font-size: 4rem;
        margin-top: 0;
        margin-bottom: 0.5rem;
    }
    
    #author {
        color: rgb(209, 13, 0);
        font-size: 3rem;
    }

    .go-down {
        scale: 70%;
        top: 60%;
    }

    .order-button {
        font-size: 1rem;
    }
    
    .text, .image  {
        width: 100%;
    }


    .title {
        font-size: 3rem;
    }

    .description {
        font-size: 1.3rem;
        margin-top: 25px;
    }

    .container {
        margin: 0;
        padding: 0%;
        width:100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
		/* margin-bottom: 30%; */
		align-items: center;
    }
    
    .container:nth-child(even) {
        flex-direction: column;
    }

    footer {
        display: block;
        background: rgb(0,0,0);
        background: linear-gradient(180deg, #e94196 0%, rgba(209,13,0,1) 100%);
        padding: 3rem 0;
        padding-bottom: 0;
    }
    
    footer .container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 3rem 0 1rem;
    }
    
    footer h3 {
        color: white;
        font-size: 1.5rem;
        text-align: center;
    }

    footer .bottom p {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        font-size: 1.3rem;
    }
    
    footer .bottom {
		flex-direction: column;
		align-items: center;
    }
}


