/* homepage.css */

/* Basic reset for consistency across browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set up a basic font-family and background for the whole page */
body {
    font-family: Arial, sans-serif;
    background-color: #e5e7eb; /* Light grey background */
    color: #333; /* Dark text for readability */
    line-height: 1.6;
}

/* Style for the header */
header {
    background-color: #333; /* Dark background for the header */
    color: #fff; /* White text color */
    padding: 10px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Basic navigation styling */
nav {
    margin: 20px 0;
    text-align: center;
}

nav a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2rem;
}

nav a:hover {
    color: #007BFF; /* Change to blue when hovered */
}

/* Main content area */
main {
    background-color: #fff;
    padding: 30px ;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Style for section headings */
h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Paragraphs for readability */
p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.pagecontent {
margin: 20px;
}

/* Footer styling */
.footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    bottom: 0;
    width: 100%;
    left:0px;
  padding: 30px 0;
  margin-top: 100px;
}

/* Footer small text */
footer small {
    font-size: 0.8rem;
}

/* Inset / indented box */
.inset-box {
    background: #e5e7eb;
    padding: 40px;
    border-radius: 15px;
    text-align: center;

    /* Neumorphic inset effect */
    box-shadow:
        inset 8px 8px 16px #c8cbd1,
        inset -8px -8px 16px #ffffff;
}
/* Center wrapper */
.center-wrapper {
    width: 100%;
    max-width: 700px;
    padding: 20px;
}


.legacybutton {
  font-family: inherit;
  border: none;
  outline: 1px dotted rgb(37, 37, 37);
  outline-offset: -4px;
  cursor: pointer;
  background: hsl(0deg 0% 75%);
  box-shadow:
    inset -1px -1px #292929,
    inset 1px 1px #fff,
    inset -2px -2px rgb(158, 158, 158),
    inset 2px 2px #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 30px;
}

.legacybutton:active {
  box-shadow:
    inset -1px -1px #fff,
    inset 1px 1px #292929,
    inset -2px -2px #ffffff,
    inset 2px 2px rgb(158, 158, 158);
}


 .card {
  width: auto;
  height: auto;
  padding: 40px;
  margin:20px;
  border-radius: 30px;
  background: #EEEEEE;
  box-shadow: rgba(50, 50, 93, 0.1) 0px 30px 50px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 26px -18px inset;
}

.legacybutton {
  font-family: inherit;
  border: none;
  outline: 1px dotted rgb(37, 37, 37);
  outline-offset: -4px;
  cursor: pointer;
  background: hsl(0deg 0% 75%);
  box-shadow:
    inset -1px -1px #292929,
    inset 1px 1px #fff,
    inset -2px -2px rgb(158, 158, 158),
    inset 2px 2px #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 30px;
}

.legacybutton:active {
  box-shadow:
    inset -1px -1px #fff,
    inset 1px 1px #292929,
    inset -2px -2px #ffffff,
    inset 2px 2px rgb(158, 158, 158);
}

/* From Uiverse.io by Peary74 */ 
.btnCloud {
  background-color: transparent;
  position: relative;
  fill: rgb(155, 153, 153);
  border: none;
}

.btnCloud::after {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 3px 9px;
  border-radius: 5px;
  transition: 200ms linear;
  transition-delay: 200ms;
  color: black;
  font-size: 13px;
  visibility: hidden;
}

.icon {
  transform: scale(1.4);
  transition: 200ms linear;
}

.btnCloud:hover > .icon {
  transform: scale(1.7);
}

.btnCloud:hover > .icon path {
  fill: #fff;
  cursor: pointer;
}

.btnCloud:hover::after {
  visibility: visible;
  opacity: 1;
  top: -100%;
}


