body {
    background-color: rgb(243, 189, 162);	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}



@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 60px;
    margin: 0;
    margin-top: 10px;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%; 
    height: 100vh;
}

.button {
    width: 1000px;
    height: 55px; 
    background: transparent;
    color: rgb(0, 0, 0);
    border: 2px rgb(255, 255, 255);
    cursor: pointer;
    transition: transform 0.3s;
    margin: 10px;
    font-size: 15px;
    border: none;

    font-family: "arek", serif;
    font-weight: 400;
    font-style: normal;
}

.button:hover {
    background-color: #fc6a5c;
}

.button span {
    display: inline-block;
    transition: transform 0.3s;
}

.button:hover span {
    transform: translateX(5px);
}


.next {
	border-radius: 4px;
	background-color: transparent;
	border: none;
	color: #000000;
	text-align: center;
	font-size: 28px;
	padding: 20px;
	width: 200px;
	transition: all 0.5s;
	cursor: pointer;
	margin: 5px;
	position: fixed;
	right: 10px;
	top: 0px;

	font-family: "arek", serif;
	font-weight: 400;
	font-style: normal;
	}
		
.next span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
		
.next span:after {
  content: '\276F';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
		
.next:hover span {
  padding-right: 25px;
  color: rgb(228, 76, 59);
}
		
.next:hover span:after {
  opacity: 1;
  right: 0;
}

@media only screen and (max-width: 600px) {
    body {
        background-color: rgb(243, 189, 162);	background-size: 400% 400%;
        animation: gradient 15s ease infinite;
        height: 100vh;
    }
    
    
    
    @keyframes gradient {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    
    h1 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 60px;
        margin: 0;
        margin-top: 10px;
    }
    
    .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%; 
        height: 100vh;

        margin-top: 60px;
    }
    
    .button {
        width: 400px;

        background: transparent;
        color: rgb(0, 0, 0);
        border: 2px rgb(255, 255, 255);
        cursor: pointer;
        transition: transform 0.3s;
        margin: 10px;
        font-size: 12px;
        border: none;
    
        font-family: "arek", serif;
        font-weight: 400;
        font-style: normal;
    }
    
    .button:hover {
        background-color: transparent;
    }
    
    .button span {
        display: inline-block;
        transition: transform 0.3s;
    }
    
    .button:hover span {
        transform: translateX(5px);
    }
    
    .next {
        font-size: 20px;
        border: none;
        background-color: transparent;
    
        font-family: "altivo", sans-serif;
        font-weight: 700;
        font-style: normal;
    
        position: fixed;
        top: 10px;
        right: 10px;
    }
    
    .next:hover {
        transform: translateY(-4px);
    }
}