body{
	background-color: #e2dbc9;
	color:black;
}
h1{
	margin-top:140px;
	margin-left: 30px;
}
p{
	font-size:24px;
	font-family:SQ Market;
	margin-left: 30px;
}
footer{
	background-color:rgb(35,31,32);
	color:white;
	padding:5px;
	position:fixed;
	left:0px;
	bottom:0px;
	min-width: 100%;
	margin-top:100px;
	
	
}
div.footerContainer{
	width:100%;
}
div.footerContainer div{
	max-width: 49%;
	float:left;
}
div.footerContainer div.divText{
	float:right;
}
.footerText{
	font-size:24px;
	color:white;
	max-height:100px;
	padding-right:20px;
	
}

.header{
	background-color:rgb(35,31,32);
	position:fixed;
	min-height:115px;
	width: 100%;
	position: 0%;
	top: 0;
	left:0px;
}
#register{
	margin-top: 30px;
	margin-left:75%;
	padding: 20px;
}
#registerButton {
	background-color: #5d9396;
	border: none;
	color: #e2dbc9;
	height: 40px;
	text-transform: uppercase;
	font-family: 'Square Market', sans-serif;
	letter-spacing: 1px;
	line-height: 40px;
	padding: 0 28px;
	font-size:32px;
	padding:12px;
	padding-left:20px;
	padding-right:20px;
	border-radius: 32px;
	font-weight: 600;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}
.buttons {
	overflow: auto;
	  display: flex;
	  flex-direction: column;
	  justify-content: flex-end;
	  align-items: center;
	  width: 259px;
	  border: 5px solid rgba(0, 0, 0, 0.1);
	  box-shadow: -2px 10px 5px rgba(0, 0, 0, 0);
	  border-radius: 10px;
	  font-family: SQ Market, SQ Market, Helvetica, Arial, sans-serif;
}
/* =========================
   Floating Navigation Bar
========================= */
.floating-nav {

    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);

    width: min(1200px, calc(100% - 40px));
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 2rem;

    background: #e2dbc9;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.12),
        0 4px 10px rgba(0,0,0,0.05);

    z-index: 1000;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    color: #1f2937;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
	
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color .25s ease;
	font-size: 16px;
	padding-right: 40px;
}
.nav-links #registerButton{
	font-size:16px;
	padding-top:0px;
	height:28px;
	
}
.nav-links a:hover {
    color: #2563eb;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width .3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-button {
    text-decoration: none;
    background: #2563eb;
    color: white;
    padding: .8rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    transition: all .25s ease;
}

.nav-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,99,235,.35);
}

/* Mobile */

@media (max-width: 900px) {

    .floating-nav {
        padding: 0 1.25rem;
        height: 64px;
    }

    .nav-links {
        display: none;
    }

    .nav-button {
        padding: .7rem 1.2rem;
    }

    .logo {
        font-size: 1.1rem;
    }
}
}
/* =========================
	End of Navigation Bar
========================= */