@font-face {
  font-family: 'Kaleron';
  src: url('font.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Kaleron';
  src: url('font-bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Kaleron';
  src: url('font-italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Kaleron';
  src: url('font-italic-bold.otf') format('opentype');
  font-weight: bold;
  font-style: italic;
}

body {
  font-family: 'Kaleron', sans-serif;
  background-color: #f0f0f0;
  color: #333;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  display: flex;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  height: 80px;
}

main {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  flex: 1; 
}

h1 {
  user-select: none;
}

.HomeBtn img {
  height: 57px;
  width: 125px;
  user-select: none;
}

.right {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.right button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.right button:hover {
  opacity: 0.8;
  background-color: #ffffff4c;
  border-radius: 10px;
}

.apps {
  position: absolute;
  top: 60px;
  right: 20px;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 15px;
  display: none;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  box-sizing: border-box;
  overflow-y: auto;
  max-height: 500px;
}

.app {
  display: flex;
  align-items: center;
  padding: 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  border-radius: 8px;
  transition: background-color 0.2s;
  font-family: Kaleron;
  text-decoration: none;
  color: #333;
  font-family: 'Kaleron', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.app:hover {
  background-color: #f5f5f5;
}

.app img {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  border-radius: 6px;
  user-select: none;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.logo-big {
  cursor: pointer;
}

.title {
  margin: 0;
  font-size: 64px;
  font-weight: bold;
  font-style: italic;
  user-select: none;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .logo-big {
    width: 200px;
    margin-left: 0;
    margin-top: 20px;
  }

  .title {
    font-size: 40px;
  }
}

.seemore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-family: 'Kaleron', sans-serif;
  font-size: 18px;
  transition: background-color 0.3s ease;
  font-weight: bold;
  animation: float 3s ease-in-out infinite;
}

.seemore img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px); 
  }
}

.icon {
  width: 90px;
}

.quote {
  font-size: 1em;
  color: #6a6a6a;
}

.quote#high {
  vertical-align: super;
}

.quote#low {
  vertical-align: sub;
}

.constant {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-family: 'Kaleron', sans-serif;
}

footer {
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-family: 'Kaleron', sans-serif;
}

@media (max-width: 460px) {
  .title {
    font-size: 38px;
  }
}

.selector {
    padding: 5px;
    margin-left: 5px;
    padding: 10px;
    border-radius: 100px;
    border: 2px solid #333;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

a {
  color: #007bff;
  text-decoration: none;
}

.box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.box .logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}
@media (max-width: 768px) {
    .box {
        flex-direction: column;
        text-align: center;
    }
    .box .logo img {
        width: 80px;
        height: 80px;
    }
}