

body{
    background-color: rgb(10, 10, 10);
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: aliceblue;
}

p {
    color: whitesmoke;
}

.seo-header #seo-hdr{
    text-decoration: underline 3px;
    text-underline-offset: 8px;
    color:#BC6C25;
    font-weight: 600;
}
#seo-ftr{
    color:#BC6C25;
}

.webdev-card img {
    transition: transform 0.6s ease;
}

.webdev-card img:hover {
    transform: scale(1.1) rotate(180deg);
    transition: transform 0.6s ease;
}

.arrow:hover {
    transform: rotate(180deg);
}

.arrow:hover+.arrow-text {
    color: #f97316;
}

.web-card {
    outline: 2px solid transparent;
    transition: outline-color 0.3s ease;
}

.web-card:hover {
    outline-color: #ffffff73;
}

.package-card {
    position: relative;
    transition: transform 0.5s ease;
}

@property --angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

.package-card::after,
.package-card::before {
    content: '';
    position: absolute;
    width: 101.5%;
    height: 101%;
    background-image: conic-gradient(from var(--angle), rgb(40, 40, 40), rgb(207, 206, 206), rgb(40, 40, 40));
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    border-radius: 10px;
    animation: 7s spin linear infinite;
}

.package-card:hover {
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.popular-card::after,
.popular-card::before {
    content: '';
    position: absolute;
    width: 101.5%;
    height: 101%;
    background-image: conic-gradient(from var(--angle), rgb(112, 72, 34), rgb(104, 76, 35), rgb(235, 129, 9));
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    border-radius: 10px;
    animation: 7s spin linear infinite;
}

@keyframes spin {
    from {
        --angle: 0deg;
    }

    to {
        --angle: 360deg;
    }
}

.console-container {
    font-size: 2rem;
    text-align: center;
    height: 40px;
    width: 1100px;
    display: block;
    font-family: 'Sora-bold';
    color: white;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 50px;
}

.console-underscore {
    display: inline-block;
    position: relative;
    top: -0.14em;
    left: 5px;
    color: white;
}

@media (max-width: 767px) { /* Általában ez a breakpoint a telefonos méret / */
    .web-card:hover h3 {
        transform: translateY(-80px);
    }

    .web-card:hover div:nth-of-type(1) { /* Ez a div tartalmazza a <p> taget */ 
        opacity: 1;
        transform: translateY(0);
    }

    .web-card:hover img {
        transform: rotate(-90deg);
    }
}



.shape-1 {
  width: 600px;
  height: 600px;
  top: 20%;
  left: -200px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
  width: 800px;
  height: 800px;
  top: 25%;
  right: -400px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.shape-3 {
  width: 600px;
  height: 600px;
  top: 45%;
  border-radius: 50%;
}

.shape-4 {
  width: 600px;
  height: 600px;
  top: 50%;
  right: -200px;
  border-radius: 50%;
}
.shape-5 {
  width: 1000px;
  height: 1000px;
  top: 75%;
  left:1150px;
  border-radius: 50%;
}
.shape-6 {
  width: 800px;
  height: 800px;
  top: 60%;
  left:-350px;
  border-radius: 50%;
}

