body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url('madeirabackground.jpg'); /* Replace with actual image */
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden; /* Prevents scrolling */
}

.container {
  text-align: center;
  padding: 20px;
}

.header h1 {
  font-family: 'Courier New', Courier, monospace;
  font-size: 5rem;
  color: #ccff00; /* Neon yellow */
}

.triangle {
  display: inline-block;
  position: relative;
  width: 200px;
  height: 200px;
  background: rgb(234,255,130);
  background: linear-gradient(90deg, rgba(234,255,130,1) 21%, rgba(196,218,61,1) 100%);
  clip-path: polygon(50% 50%, 0 8%, 100% 8%);
  margin: 0 auto;

  
  
}

.bordertriangle{
  display: inline-block;
  position: relative;
  padding: 10px;
background: rgb(172,6,187);
background: linear-gradient(0deg, rgba(172,6,187,1) 31%, rgba(213,52,192,1) 43%);
  clip-path: polygon(50% 55%, 0% 10%, 100% 10%);
  border-radius: 5px;
	
}
.triangle p {
  margin: 0;
  padding: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  color: black;
}

.buttons{
	margin: 2px;
	padding: 2px;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  line-height: 1.6;
}

.btn {
background: rgb(255,90,214);
background: linear-gradient(45deg, rgba(255,90,214,1) 30%, rgba(183,22,152,1) 100%);
  border: none;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: scale(1.1);
}

.footer {
  position: fixed;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 0px;
}

.cat-icon {
  padding: 0 35px;
  margin-right: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-self: flex-end;
  
}

.footer p {
  margin: 0;
  align-self: flex-end;
  color:#eff4f8;
  font-family: cursive;
}

a:link, a:visited {
  color: white;
}
.news-section {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 300px;
    height: 80vh; /* Limits height to 80% of the viewport */
    overflow-y: auto; /* Enables vertical scrolling */
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 10px;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

/* Custom scrollbar styling (optional, for better appearance) */
.news-section::-webkit-scrollbar {
    width: 8px;
}

.news-section::-webkit-scrollbar-thumb {
    background: #ccff00;
    border-radius: 4px;
}

.news-section::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
}

.news-category {
    margin-bottom: 15px;
}

.news-category h3 {
    font-size: 1.2rem;
    color: #ccff00;
    margin-bottom: 5px;
}

.news-category ul {
    padding-left: 15px;
}

.news-category li {
    list-style: none;
    margin-bottom: 5px;
}

.news-category a {
    color: #ff66cc;
    text-decoration: none;
}

.news-category a:hover {
    text-decoration: underline;
}

