<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Style for Home page */
body {
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif;
background-color: #f7f7f7;
}

.container h1 {
font-size: 48px;
font-weight: 700;
margin: 0 0 20px;
color: #0f4c81;
text-align: center;
line-height: 1.2;
text-transform: uppercase;
}

.container .button {
  display: inline-block;
  padding: 16px 48px;
  background-color: #0f4c81;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-top: 30px;
  border: 2px solid white;
}

.container .button:hover {
  background-color: #fff;
  color: #0f4c81;
  border: 2px solid #0f4c81;
}


.container p {
font-size: 18px;
line-height: 1.5;
color: #555;
margin: 0;
text-align: center;
margin-top: 40px;
}

.container p a {
color: #0f4c81;
font-weight: 700;
text-decoration: none;
}

.buttons {
display: flex;
flex-direction: row;
align-items: center;
margin: 0;
padding: 0;
position: absolute;
top: 0;
right: 0;
}

.buttons li {
list-style-type: none;
margin-left: 1em;
}

a.button {
display: inline-block;
padding: 16px 48px;
background-color: #0f4c81;
color: #fff;
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
text-decoration: none;
border-radius: 4px;
transition: all 0.3s ease;
margin-top: 30px;
}

a.button:hover {
background-color: #fff;
color: #0f4c81;
border: 2px solid #0f4c81;
}
select {
display: block;
width: 100%;
padding: 10px;
font-size: 16px;
font-family: 'Montserrat', sans-serif;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-bottom: 20px;
color: #555;
}

.homepage-message {
  color: #0f4c81;
  text-align: center;
  font-size: 20px;
}
/* Add styles for the "Don't show again" button */
.dont-show-again-button {
    background-color: #555;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.dont-show-again-button:hover {
    background-color: #444;
}

/* Style the options inside the select element */
select option {
background-color: #fff;
color: #555;
}

/* Style for body */
body {
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif;
background-color: #f7f7f7;
}

/* Style for div at the top-right corner */
div {
text-align: right;
margin-bottom: 20px;
}

/* Style for top-right corner link */
div a {
color: #0f4c81;
text-decoration: none;
font-size: 20px;
}

/* Style for container of torrents */
.torrents-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

/* Style for torrent boxes */
.torrent-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 350px;
  margin: 20px 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
/* this is styles for the accounts pg.

/* Style for the entire page */
body {
  background-color: #f5f5f5;
  font-family: Arial, sans-serif;
}

/* Style for the page header */
h1 {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Style for the table */
table {
  margin: 0 auto;
  border-collapse: collapse;
  border: 1px solid #ddd;
  width: 80%;
  max-width: 800px;
}

/* Style for the table header row */
thead tr {
  background-color: #f8f8f8;
}

/* Style for the table header cells */
th {
  padding: 12px 15px;
  text-align: left;
}

/* Style for the table data rows */
td {
  padding: 12px 15px;
}

/* Style for the alternating background color of the table data rows */
tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Style for the link in the table */
a {
  color: #1e90ff;
  text-decoration: none;
}

/* Style for the link when hovering over it */
a:hover {
  text-decoration: underline;
}
s




/* login pg*/



</pre></body></html>