@font-face {
    font-family: Golos;
    src: url(../assets/fonts/GolosText-VariableFont_wght.ttf);
}
body {  
    font-family: Golos, 'Courier New', Courier, monospace;

}
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../assets/images/interface.png);
    background-repeat: no-repeat;
    background-size: 100% 1200px;
    filter: blur(2px); /* Adjust the blur amount as needed */
    z-index: -1;
}
.portrait{
    border-radius: 50%;
    height: 150px;
    width: 150px;
}
.spacing {
    margin-top: 500px;
}
.cards {
    background-color: #232323;
    border-radius: 5px;
}
.card {
    background-color: #232323;
    transition: 0.4s ease-out
}
.card:hover {
    transform: translateY(-20px);
}
.card:hover:before {
    opacity: 1;
}
.card:hover .info {
    opacity: 1;
    transform: translateY(0px);
}
.card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2;
    transition: 0.5s;
    opacity: 0;
}
.card .info {
    position: absolute;
    top: 30%;
    z-index: 3;
    opacity: 0;
    transform: translateY(-30px);
    transition: 0.5s;
}
.card .info button:hover {
    background: #252f71;
    color: white;
    font-weight: bold;
}
.icons {
    height: 50px;
    width: 50px;
    border-radius: 50%;
}
.off-color{
    color: #252f71;
    font-weight: bolder;
}
.intro {
    background-color: #252f71;
}
.btn:hover {
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    body {
        background-size: 100% 800px;
    }
    h1 {
        padding: 1rem;
    }
    .spacing {
        margin-top: 0px;
    }
}

.dots {
    display: inline-block;
    width: 1.5em; /* Fixed width for three dots */
    text-align: left; /* Align dots to the start of the span */
}

@keyframes dotAnimation {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80% { content: '...'; }
    100% { content: '...'; } /* Hold the third dot briefly */
}

.dots::after {
    display: inline-block;
    content: '';
    animation: dotAnimation 2s infinite steps(1);
}