* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
}

:root {
  --primary-color: #fff;
  --secondary-color: #000;
  --cta-btn: #20b2aa;
}

html,
body {
  height: 100%;
}

@font-face {
    font-family: 'Inter';
	font-display: swap;
	src: url('../fonts/Inter/static/Inter_28pt-Regular.woff') format('woff'), 
}
/* @font-face {
    font-family: 'Inter';
	font-display: swap;
	src: url('../fonts/Inter/static/Inter_28pt-Bold.woff') format('woff'), 
  } */

body {
  font-family: 'Inter';
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #2571BA;
  user-select: none;
}

/* Cursor STYLING */
#cursor {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  background-color: var(--primary-color);
}
/* HEADER STYLING */
header {
  display: flex;
  justify-content: space-between;
  background-color:#fff;
}

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

main {
  margin: 20px;
}

.content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap; /* This allows the content to wrap on smaller screens */
}

.left {
  padding: 20px;
  flex: 1;
  min-width: 250px;
/*
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
*/
}

.right {
	  
	  padding-top:80px;
	  flex: 1;
	  min-width: 250px;

}


/* Logo Styles */
#logo {
  width: 160px;
  max-width: 100%;
  flex-shrink: 1;
  flex-grow: 0;
  padding: 1rem;
  border-radius: 20px;
}

#logo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
/*
  box-shadow: 0 0 0.2em var(--cta-btn);
*/
}

/* Navigation Styles */
nav {
  flex: 0.5;
}
nav ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
}

nav a {
  text-decoration: none;
  font-size: 1.4em;
  color: var(--primary-color);
  transition: color 0.8s ease-in-out;
}

nav li a[aria-label="Sign In"] {
  background-color: var(--cta-btn);
  padding: 0.5rem 2rem;
  border-radius: 2em;
  font-weight: 900;
  transition: background-color 1.2s ease-in-out;
}

nav li a[aria-label="Sign In"]:hover {
  background-color: var(--secondary-color);
  box-shadow: inset 0 0 1rem;
}
nav a:hover {
  color: rgba(255, 255, 255, 0.4);
}

/* MAIN STYLING */

.main-container {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  height: 70vh;
}
#introduction {
  flex: 1;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 2.2em;
  padding: 5 1em;
}
#introduction h1 {
  font-size: 30px;
  letter-spacing: 0.1rem;
/*
  text-shadow: 0 0 1rem #000;
*/
}


#introduction p {
  font-size: 1.2em;
  letter-spacing: 0.1rem;
/*
  text-shadow: 0 0 1rem #000;
*/
}

/* Call-to-Action Button Styles */
/*.cta-button {
  background-color: #36A489;
  border: none;
  padding: 0.5em 2.5rem;
  border-radius: 3em;
  font-size: 1.6em;
  font-weight: 900;
  transition: background-color 1.2s ease;
  font-optical-sizing: auto;
  font-style: normal;
}*/
.cta-button {
  background-color: #36A489;
  border: none;
  padding: 16px 25px 16px 28px;
  border-radius: 3em;
  font-size: 16px;
  font-weight: 600;
  /* box-shadow: inset 0 0 1rem; */
  transition: background-color 1.2s ease;
  font-optical-sizing: auto;
  font-style: normal;
}

.cta-button:hover {
  background-color: #36A489;
}

a,
a button{
    cursor: pointer;
}

#visuals {
  flex: 1;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#visuals img {
  max-width: 60%;
  height: auto;
  border-radius: 25px;

}

@media(max-width:1024px){
	#introduction h1 {
		font-size: 36px;
	}
}
@media(max-width:991px){
	#introduction h1 {
		font-size: 34px;
	}
}
@media(max-width:767px){
	#introduction h1 {
		font-size: 21px;
	}
}
@media(max-width:712px){
	#introduction h1 {
		font-size: 22px;
	}
}

/* TABLATE QUERY */
@media screen and (min-width: 830px) and (max-width: 1355px) {
  nav {
    flex: 1;
  }
}
@media (max-width: 480px) {
  header h1 {
    font-size: 1.5rem; /* Smaller font size for mobile screens */
  }
}
/* Responsive Design for smaller screens */
@media (max-width: 390px) {
  .content {
    flex-direction: column; /* Stack the content vertically on smaller screens */
    gap: 10px;
  }

  .left, .right {
    min-width: 100%; /* Make each div take full width */
  }
}
span.introtext {
  font-size: 16px;
  line-height: 24px;
}


