﻿
/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
    height: 100%;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

/*.topnav-right {
    float: right;
}*/

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    background-color: #f8f9fa !important;
    font-family: "Play", Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 800;
    height: 100%;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1 0 auto;
}

svg text {
    font-family: "Audiowide";
    letter-spacing: 3px;
    stroke: #ff0606;
    font-size: 66px;
    font-weight: 700;
    stroke-width: 1;
    animation: textAnimate 5s infinite alternate;
}

@keyframes textAnimate {
    0% {
        stroke-dasharray: 0 50%;
        stroke-dashoffset: 20%;
        fill: hsl(7deg 100% 50%)
    }

    100% {
        stroke-dasharray: 50% 0;
        stroke-dashoffstet: -20%;
        fill: hsla(189, 68%, 75%,0%)
    }
}
#ipv4{
    color:red;
    font-weight:600;
}


.container {
    max-width: 100%;
}

.pricing-header {
    max-width: 700px;
}

.card-deck .card {
    min-width: 220px;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

/*.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}*/

.banner {
    font-family: Sacramento, sans-serif;
    font-size: 8em;
    text-align: center;
    /*text-shadow: 3px 3px 20px #9b9498, -2px 1px 30px #deddd7;*/
    color: #fff6a1;
    letter-spacing: 7px;
    text-shadow: 0 0 20px #ffa704, 0 0 40px #ffa704, 0 0 60px #ff1e00;
    animation: flicker 6s infinite;
}

@keyframes flicker {

    15%, 20%, 50% {
        color: #e9ecef;
        text-shadow: none;
    }

    0%, 14%, 16%, 19%, 26%, 49%, 51%, 100% {
        text-shadow: 0 0 20px #ffa704, 0 0 40px #ffa704, 0 0 60px #ff1e00;
        color: #fff6a1;
    }
}

/*.h1, .h2 {
    font-weight: 800;
}*/

.badge {
    font-family: "Play", Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14px;
    text-align: center;
    color: #ffffff !important;
    padding: 3px;
    margin-right: 3px;
}

th, td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
    white-space: nowrap; /* Ngăn chặn trang web từ việc ngắt dòng trong cell */
    overflow: hidden;
    text-overflow: ellipsis; /* Hiển thị dấu "..." nếu nội dung quá dài */
}

td:hover {
    overflow: visible;
    white-space: normal; /* Cho phép hiển thị đầy đủ nội dung khi hover */
}

.no-effect-link {
    color: white !important;
    text-decoration: none !important;
    pointer-events: auto;
}

.no-effect-link:hover {
    color: white !important;
    text-decoration: none !important;
}

.hero-section {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
    color: white;
    padding: 100px 0;
    text-align: center;
}
.footer {
    background: linear-gradient(135deg, #4a00e0, #8e2de2);
    color: white;
    padding: 40px 0;
}
.btn-gradient-orange {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    border: none;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn-gradient-orange:hover {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: white;
    transform: scale(1.05);
}

.login-container {
    max-width: 400px;
    width: 100%;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.feature-section {
    padding: 80px 0;
}

.feature-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.feature-icon {
    font-size: 3rem;
    color: #007bff;
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}