/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');

.font-main{
    font-family: 'Unbounded';
    text-transform: uppercase;
    color: #191919;
    font-size: 2.4rem;
}

.font-main2{
    font-family: 'Unbounded';
    color: #191919;
    font-weight: bold;
    font-size: 1.6rem;  
}

.box{
    width: 50%;
}

.font-sec{
    font-family: Arial, Helvetica, sans-serif;
    color: #fafad2;
    text-align: justify;
}

.bg-blue{
    background-color: blue;
}

.bg-red{
    background-color: red;
}

.bg-geral{
    background-color: #bc1637;
}

.bg-home{
    background-image: url("/assets/japan-wallpaper-85086d0f.jpg");
    background-size: cover;
}

.bg-contact{
    background-image: url("/assets/japan-wallpaper-85086d0f.jpg");
    background-size: cover;
}

.bg-projects{
    background-color: #fafad2;
    background-size: cover;
}


.btn-nav{
    font-size: 1.2rem;
    /* background-color: red; */
    color: #fafad2;
    padding: 2px 4px;

    transition: .1s ease;
}

.btn-nav:hover{
    color: #fafad263;
}

.bg-blur{
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.2px);
    -webkit-backdrop-filter: blur(8.2px);
    border: 1px solid rgba(255, 255, 255, 0.3);

    color: #FFF;
    font-weight: bold;
}

.border-img{
    border-radius: 59% 41% 63% 37% / 39% 53% 47% 61%;
}

.img-hover{
    transition: .2s ease;
    border-radius: 16px;
}

.img-hover:hover{
    transform: scale(1.2);
    /* box-shadow: -1px 6px 10px -7px #8b0000; */
}

.box-projects{
    width: 50%;
    margin: 0 auto;
}

@media (max-width:768px) {
    .font-main{
        font-size: 1.4rem;
    }

    .box{
        width: 300px;
    }

    .btn-nav{
        font-size: 1rem;
    }

    .box-projects{
        width: 300px;
    }

    .font-main2{
        font-size: 1.2rem;
    }
}