/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image:url(https://icametosin.neocities.org/IMG_2572.jpeg);
  background-position: center center;
  background-repeat: repeat;
  background-attachment: fixed;
  background-color: white;
  color: black;
  font-family: Verdana;
}



*, *::before, *::after {
  box-sizing: border-box;
}


/* Reset some default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Set background color and full height */
body {
  background-color: #ffffff;
  height: 100vh;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Centering container */
.container {
  text-align: center;

  margin: 0 auto;
  width: 90%; /* or desired width */
}

body, * {
  transition: none !important;
}


/* Logo style */
.logo {
  max-width: 100%;
  height: auto;
  width: 600px; /* Adjust this for your preferred logo size */
  margin-bottom: 20px;
}

/* Button styles */
.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  text-decoration: none;
  background-color: #333;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #555;
}
