
.navbar {
  
  margin-bottom: 100px;
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 1rem 2rem;
  color: white;
}


.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}


.nav-links a:hover {
  color: #04AA6D;
}


footer {

  margin-top: 100px;
  float: bottom;
  width: 100%;
  background-color: #18181a;
  color: #ffffff;
  padding: 40px 0 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1;
  min-width: 250px;
  padding: 10px;
}

.footer-col h4 {
  margin-bottom: 20px;
  color: #eb6857;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a {
  color: #bbb;
  text-decoration: none;
  line-height: 2;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  border-top: 1px solid #333;
  padding-top: 20px;
}


body {
	display: flex;
	align-items: center;
	min-height: 100vh;
	flex-direction: column;
    font-family: Arial;
    background: #111;
    color: white;
    margin: 20px;
	
}


input {
    padding: 10px;
    font-size: 16px;

}

button {
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
}

table {
    margin: auto;
    border-collapse: collapse;
    width: 50%;
}

th, td {
    padding: 10px;
    border-bottom: 1px solid #444;
}

th {
    background: #00cc99;
    color: black;
}


img{
	max-width: 350px;
	float: left;
	border-radius: 10px;
	border:3px solid white;
	margin-right: 20px;
	margin-left: 50px;
}

video{
	width: 480px;
	height: 360px;
	float: left;
	margin-right: 20px;
	margin-left: 50px;
}


.Container{
	margin: 20px auto;

}


.text h2{
	font-size: 50px;
	padding: 5px;
	
}


  .button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
  }
  .button-link:hover {
    background-color: #0056b3;
  }


