@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@font-face{
    font-family: 'Eurostile';
    src: url('/assets/fonts/eurostile/Street.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: 'gui';
    src: url('/assets/fonts/eurostile/SivarPro.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(to top, #6995cee3 0%, #b7fff9 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.container{
    max-width: 1400px;
    margin: 0 auto;
}

main.container{
    display: flex;    
    min-height: 80dvh;
    align-items: center;
    font-family: Roboto Mono;
    padding-left: 20px;
    padding-right: 20px;
}

.container-logos-nav{
    display: flex;
    align-items: center;
    gap: 5px;
}

nav{
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lista-about ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.lista-about li{
    background-color: rgba(0, 0, 0, 0.062);
    text-align: center;
    margin: 2px;
    width: 100%;
    border-radius: 10px;
}

.fa-brands{
    font-size: 25px;
    gap: 10px;
    color: rgba(0, 0, 0, 0.705);
    border-radius: 10px;
    padding: 15px;
}

.logo-png img {
    animation: flutuar 3s ease-in-out infinite;
}

.container-main{
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.about-main p{
    margin-bottom: 14px;
}

.about-main img{
    border-radius: 10px;
    opacity: 0.7;
}

.about-cards{
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

p{
    font-size: 19px;
}

section.about-main{
    background-color: rgba(0, 0, 0, 0.024);
    padding: 20px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    color: rgb(0, 0, 0);
    border:  solid 1px rgba(0, 0, 0, 0.045);
}

.card0-about{
    background-color: rgba(0, 0, 0, 0.024);
    border:  solid 1px rgba(0, 0, 0, 0.045);
    border-radius: 10px;
    padding: 20px;
}

.card-about{
    background-color: rgba(0, 0, 0, 0.024);
    border:  solid 1px rgba(0, 0, 0, 0.045);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.about-princ{
    display: flex;
    flex-direction: column;
    max-width: 500px;
    justify-content: center;
}

.about-links ul{
    list-style: none;
}

.about-links a{
    color: rgb(94, 85, 216);
    /* text-decoration: none; */
}

.about-links a:hover{
    color: white;
}

.about-links li{
    padding-top: 10px;
}

.fa-pinterest:hover{
    color: #E60023;
}

.fa-instagram:hover{
    color: #C13584;
}

.fa-linkedin:hover{
    color: #0A66C2;
}

.fa-github:hover{
    color: #171515;
}

.fa-brands{
    transition: all 0.3s ease;
}

.fa-brands:hover{
    cursor: pointer;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.card-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-radius: 10px;
}

.clock {
    font-family: 'gui', sans-serif;
    color: #000000;
    font-size: 2.8rem;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.clock:hover {
    color: #fff;
    text-shadow: 0 0 30px #302f2f, 0 0 60px #474646;
    cursor: pointer;
}

@keyframes flutuar {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.footer {
    text-align: center;
    padding: 10px;
    color: rgb(0, 0, 0);
    font-family: Roboto Mono;
}