/* Sakura.css v1.5.1
 * ================
 * Minimal css theme.
 * Project: https://github.com/oxalorg/sakura/
 */
/* Body */
html {
  font-size: 62.5%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  min-height: 100%;

  background: linear-gradient(to bottom right,
  #1e1e26 0%,
  #22232c 20%,
  #262a34 35%,
  #2a2f3a 50%,
  #2e3440 65%,
  #353a47 80%,
  #3a3e4f 100%
);

}

body {
  font-size: 1.8rem;
  line-height: 1.618;
  max-width: 44em;
  margin: auto;
  color: #f0f0f0;
  /* background-color: #424242; */
  /*background-color: #1e1e26; */
  background: transparent;
  padding: 13px;
}

@media (max-width: 684px) {
  body {
    font-size: 1.53rem;
  }
}
@media (max-width: 382px) {
  body {
    font-size: 1.35rem;
  }
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
}

h1 {
  font-size: 2.35em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.75em;
}

h4 {
  font-size: 1.5em;
}

h5 {
  font-size: 1.25em;
}

h6 {
  font-size: 1em;
}

p {
  margin-top: 0px;
  margin-bottom: 2.5rem;
}

small, sub, sup {
  font-size: 75%;
}

hr {
  border-color: #980255;
}

a {
  text-decoration: none;
  color: #f0f0f0;
}
a:visited {
  color: #c7c6c6;
}
a:hover {
  color: #cccccc;
  border-bottom: 2px solid #49002d;
}

ul {
  padding-left: 1.4em;
  margin-top: 0px;
  margin-bottom: 2.5rem;
}

li {
  margin-bottom: 0.4em;
}

blockquote {
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 1em;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  padding-right: 0.8em;
  border-left: 5px solid #980255;
  margin-bottom: 2.5rem;
  background-color: #f8d2e9;
}

blockquote p {
  margin-bottom: 0;
}

img, video {
  height: auto;
  max-width: 100%;
  margin-top: 0px;
  margin-bottom: 0.5rem;
  border-radius: 5px;
  border: 4px solid #f0f0f0;;
  box-sizing: border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);

}

/* Pre and Code */
pre {
  background-color: #f8d2e9;
  display: block;
  padding: 1em;
  overflow-x: auto;
  margin-top: 0px;
  margin-bottom: 2.5rem;
  font-size: 0.9em;
}

code, kbd, samp {
  font-size: 0.9em;
  padding: 0 0.5em;
  background-color: #f8d2e9;
  white-space: pre-wrap;
}

pre > code {
  padding: 0;
  background-color: transparent;
  white-space: pre;
  font-size: 1em;
}

/* Tables */
table {
  text-align: justify;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

td, th {
  padding: 0.5em;
  border-bottom: 1px solid #f8d2e9;
}

/* Buttons, forms and input */
input, textarea {
  border: 1px solid #49002d;
}
input:focus, textarea:focus {
  border: 1px solid #980255;
}

textarea {
  width: 100%;
}

.button, button,
input[type=submit],
input[type=reset],
input[type=button],
input[type=file]::file-selector-button {
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background-color: #980255;
  color: #ffe4f5;
  border-radius: 1px;
  border: 1px solid #980255;
  cursor: pointer;
  box-sizing: border-box;
}
.button:hover, button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
input[type=file]::file-selector-button:hover {
  background-color: #753851;
  color: #ffe4f5;
  outline: 0;
}

.button[disabled], button[disabled],
input[type=submit][disabled],
input[type=reset][disabled],
input[type=button][disabled],
input[type=file][disabled] {
  cursor: default;
  opacity: 0.5;
}
.button:focus-visible, button:focus-visible,
input[type=submit]:focus-visible,
input[type=reset]:focus-visible,
input[type=button]:focus-visible,
input[type=file]:focus-visible {
  outline-style: solid;
  outline-width: 2px;
}

textarea, select, input {
  color: #49002d;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  margin-bottom: 10px;
  background-color: #f8d2e9;
  border: 1px solid #f8d2e9;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}
textarea:focus, select:focus, input:focus {
  border: 1px solid #980255;
  outline: 0;
}

input[type=checkbox]:focus {
  outline: 1px dotted #980255;
}

label, legend, fieldset {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.container {
  min-width: 600px;
  max-width: 1800px;
  margin: 50px auto;
  padding: 20px;
  /* background-color: #814399; */
  background: linear-gradient(to top , #5e3c72, #b860db);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}
.menu {
  display: flex;
  justify-content: space-evenly;  /* or space-between / space-around */
  align-items: center;
  margin: 5px auto;
  padding: 10px 0;
  flex-wrap: wrap;
  gap: 10px;
  

}
.menu a {
  color: white;
  text-decoration: none;
  padding: 16px;
  border-radius: 5px;
  transition: background 0.2s;
  border-bottom: 2px solid transparent;
  font-size: 2rem;
  
}

.menu a:hover {
  background-color: #666;
  border-bottom: 2px solid #49002d;
  transform: translateZ(0);
}
.text-body {
  display: flex;
  gap: 2em; /* space between columns */
}

.left-column, .right-column {
  flex: 1; /* each takes equal width */
}
.project-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  max-width: 600px;  /* or whatever fits your design */
  margin: 1rem auto;
  text-align: center; /* center text under the logo */
}
.project-card a:hover {
  width: 100%;  /* fills the container width */
  height: auto;
  border-radius: 8px;  /* optional styling */

}

.logo img {
  width: 100%;  /* fills the container width */
  height: auto;
  border-radius: 8px;  /* optional styling */
  transition: filter 0.3s ease;
  border-bottom: 2px transparent;
  
}
.logo img:hover {
  filter: brightness(60%);
  border-bottom: 2px transparent;
}
.logo a:hover {
  border-bottom: 2px transparent;
}
.details h2 {
  margin: 0;
  font-size: 2rem;
}

.details p {
  margin: 0.5rem 0 0 0;

}
.social-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
  padding: 1rem 0;
  width: 100%;
}

.social-card .social-logo img {
  width: auto;
  height: 100px;
  object-fit: contain;

  display: block;

}

.social-card .details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-card .details h2 {
  margin: 0;

  font-weight: bold;
  color: white;
}

.social-card .details a {
  color: #ccc;
  text-decoration: none;
  margin-top: 0.2rem;
}





