@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

main {
	background-color: #f7f7f7;
	background-size: 400% 400%;
    animation: gradient 30s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.container {
    position: relative;
}

.logo-container {
    margin-top: 10px;
}

.logo {
    max-width: 30%;
    height: auto;
	margin: 0 auto;
	display: block;
}

.follow-section {
    color: #222;
    padding: 10px 0;
	position: absolute;
	bottom: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

@font-face {
	font-family: PichiNunito;
	src: url("Fonts/Argue DEMO.otf");
}

main .follow-section h2 {
    margin-bottom: 30px;
	font-family: PichiNunito;
}

.social-icons a {
    display: inline-block;
    margin: 0 20px;
}

.social-icons img {
    width: 15px; /* Adjust as needed */
    height: auto;
}

.social-icons .tiktok-icon {
	width: 20px;
	height: auto;
}

img.peach {
	max-width: 20%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
	margin-top: -100px;
	margin-left: 42%;
}

.contact-info {
    text-align: center;
}

.contact-info p, .contact-info h4 {
    margin: 5px 0;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.instagram {
    max-width: 30px;
    height: auto;
    margin-top: 10px;
}

.message-container {
    position: absolute;
    bottom: 40px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

#message {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #000;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    animation: typeMessage 5s infinite; /* Total duration including delay and typing */
}

a {
	color: black;
	text-decoration: none; /* Remove underline */
}


.fullscreen-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* Ensure the image is on top */
    pointer-events: none;
	overflow: hidden;
}

.fullscreen-image img {
    width: 50%; /* Initial width */
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5); /* Initial scale */
    animation: zoomOut 5s ease forwards; /* Animation to zoom out */
	z-index: -1;
	pointer-events: none;
}

@keyframes zoomOut {
	0% {
		transform: translate(-50%, -50%) scale(0.5); /* Initial scale */
    }
    100% {
		transform: translate(-50%, -50%) scale(2); /* Final scale */
        opacity: 0; /* Fade out */
    }
}

.main-content {
	opacity: 0; /* Initially hidden */
    animation: fadeIn 5s ease forwards; /* Animation to fade in */
    z-index: 100; /* Ensure the main content is on top */
    pointer-events: auto; /* Allow pointer events */
}

@keyframes fadeIn {
    0% {
        opacity: 0; /* Start with opacity 0 */
    }
    100% {
		opacity: 1; /* End with opacity 1 */
    }
}
