body {
    padding: 0;
    margin: 0;
    background: rgb(172, 104, 27);
    font-family: 'Poppins', Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

@keyframes fadein {
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.left {
    width: 50%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadein 1s ease forwards;
}

.left h1 {
    color: white;
    font-size: 30px;
    line-height: 40px;
}

.left p {
    color: white;
}

.left ul {
    color: white;
}

.right {
    width: calc(50% - 50px);
    margin-left: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadein 1s ease forwards;
}

.right img {
    width: 100%;
}

.left a {
	color: white;
	border: 2px solid white;
	padding: 15px;
	text-decoration: none;
	display: inline-block;
	transition: all .2s;
}

.left a:hover {
	background: white;
	color: black;
}

.custom-shape-divider-top-1641289881 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    filter: invert(1);
    opacity: .2;
}

@media only screen and (max-width: 1000px) {
    .container {
        flex-direction: column;
        margin-top: 50px;
    }

    .left, .right {
        width: 100%;
        margin: 0 auto;
    }
}