body {
	background: linear-gradient(-45deg, #f4977b, #f34444, #f4ae79, #fb8853);
	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%;
	}
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    top: -300px;

    font-size: 20px;

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

.text-container {
    border: none;
    background-color: transparent;
    padding: 20px;
    margin-right: 20px;

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

.button-container {
    display: flex;
    flex-direction: column;
}

.hidden {
    display: none;
}

.typing-animation {
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 2px;
}

@keyframes typing {
    from {
        width: 0;
    }
}

.button-container {
    position: fixed;
    top: 210px;
    right: 600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

button {
    margin-bottom: 10px;
    font-size: 30px;
    border: black solid;
    background-color: transparent;
}

button:hover{
    background-color: rgb(206, 102, 102);
}

@media only screen and (max-width: 600px){
    body {
        background: linear-gradient(-45deg, #f4977b, #f34444, #f4ae79, #fb8853);
        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%;
        }
    }
    
    .container {
    
        font-size: 16px;
    
        font-family: "arek", serif;
        font-weight: 400;
        font-style: normal;
    }
    
    .text-container {
        border: none;
        background-color: transparent;
    
        font-family: "arek", serif;
        font-weight: 400;
        font-style: normal;
    }
    
    .button-container {
        display: flex;
        flex-direction: column;
    }
    
    .hidden {
        display: none;
    }
    
    .typing-animation {
        overflow: hidden;
        white-space: nowrap;
        letter-spacing: 2px;
    }
    
    @keyframes typing {
        from {
            width: 0;
        }
    }
    
    .button-container {
        position: fixed;
        top: 210px;
        right: 60px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    button {
        margin-bottom: 10px;
        font-size: 20px;
        border: black solid;
        background-color: transparent;
    }
    
    button:hover{
        background-color: rgb(206, 102, 102);
    }
} 