﻿/* wwwroot/css/site.css */
html, body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  width: 100%;
}

  .header .nav-link {
    color: #fff;
    margin: 0 10px;
  }

    .header .nav-link:hover {
      color: #258cfb;
    }

  .header .btn {
    margin: 0 5px;
  }

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

  .main-content h1 {
    color: #5a5a5a;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .main-content p {
    color: #4d4d4d;
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .main-content .btn {
    margin: 10px;
  }

/*.footer {
  padding: 10px 20px;
  background-color: #2e2e3e;
  color: white;
  text-align: center;
}*/

.devices img {
  width: 100%;
  max-width: 400px;
  margin: 20px;
}
.animated-text {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.animated-image {
    transform: scale(0.8);
    transition: transform 0.5s ease-in-out;
}

.animate__fadeInUp {
    opacity: 1 !important;
}

.animate__zoomIn {
    transform: scale(1) !important;
}
