@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');

body, html {
    padding: 0;
    margin: 0;
    font-size: 13px;
    background: #000;
    color: #d43c96;
    font-family: 'Source Code Pro', monospace;
	scrollbar-color: #aee16a #36454F;
  	scrollbar-width: thin;
}

img {
    max-width: 100%;
}
footer {
                            
                max-width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
               
            }

.page {
    padding: 2% 5%; /* Adjust padding for better responsiveness */
}

.page h1:first-child {
    margin-top: 0;
}

.header-image {
    max-width: 100%;
    height: auto;
    margin: auto;
    display: block;
}

.wrapper {
    max-width: 100%;
    padding: 2%; /* Adjust padding for better responsiveness */
    box-sizing: border-box;
}

.menu {
      display: flex;
    justify-content: center; /* Center-align vertically */
    align-items: center; /* Center-align horizontally */
	margin: 10px 0; 
    
}

.menu a {
    color: #d43c96;
    margin: 0 15px;
    text-decoration: none;
}

.main {
    max-width: 100%;
    background-image: url('bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    padding: 2% 0;
}

.main iframe {
    border: none;
    width: 100%;
    max-width: 800px; /* Adjust max-width as needed */
    height: 400px; /* Adjust height as needed */
    margin: 0 auto;
}
.frogs {
   
    display: flex; /* Display the images on the same line */
    width: auto; /* Allow the container to expand based on image sizes */
    vertical-align: middle; /* Vertically align the images */
	justify-content: space-between;

}
.frogs img {
	width:60px;
}
.tumblr {
	padding-top: 10px;
}


h1, h2, h3, h4, h5 {
    font-size: 12px;
    text-decoration: none;
}

a {
    color: #aee16a;
    border-bottom: hidden;
    text-decoration: none;
}

h1 {
    border-bottom: 1px solid #aee16a;
    text-decoration: none;
}

h1 a {
    text-decoration: none;
}

h2 {
    border-bottom: 1px dotted #aee16a;
}
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}
input[type=submit] {
  background-color: #aee16a;
  color: black;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.container {
  border-radius: 5px;
  padding: 20px;
}

.header-text {
    color: #d43c96;
    font-size: 24px;
    border-bottom: hidden;
    text-decoration: none;
    text-align: center;
}

.typewriter h1 {
    overflow: hidden;
    border-right: .15em solid #d43c96;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: typing 4s steps(40) forwards, blink-caret .75s step-end 5;
}

/* The typing effect */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #d43c96; }
}


@media (min-width: 768px) {
    .wrapper {
        padding: 2% 10%; 
    }


    .menu a {
        margin: 0 10px;
    }

    .main {
        padding: 2% 0;
    }

    .main iframe {
        max-width: 800px; 
        height: 500px; 
    }
	
}

