@import url('https://fonts.googleapis.com/css2?family=Saira+Stencil+One&display=swap&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900');
a{
    color: black;
    text-decoration: none;
}
*{
    font-family: "Roboto";
}
.bg-image{
    filter: blur(2px);
    background: rgba(44, 31, 31, 0.281) url('../img/background.jpg') top /cover no-repeat;
    height: 100vh;
}
.main-container{
    position: absolute;
    top: 0%;
    left: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80%;
}
.main-container h1{
    font-size: 88px;
    font-family: "Saira Stencil One", sans-serif;
    font-weight: 400;
    color: #8c0808;
}
.menu-container{
    padding: 60px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    background: #025e7383;
    width: 800px;
}
h2{
    font-weight: 900;
    color: #bf0a0a;
    font-size: 32px;
}
.nav{
    display: flex;
    gap: 32px;
}
.nav a{
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
    color: #011f26;
    font-weight: 700;
    font-size: 24px;
    border-radius: 50%;
    border: 2px solid #011f26;
    transition: all 0.6s;
}
.nav a:hover{
    background-color: #035c70;
    color: aliceblue;
    border-radius: 20px;
}
.nav a i{
    font-size: 56px;
}

/* FORMULARIOS */

.form-container{
    padding: 40px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    background-color: #025e7383;
    width: 800px;
}
.form{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 24px;
}
.form textarea{
    padding: 20px;
}
input, select, textarea{
    padding: 12px 20px;
    border-radius: 20px;
    border: none;
    width: 320px;
    font-size: 18px;
    font-weight: 900;
    background: #011f26;
    color: rgb(255, 255, 255);
}
.primary-button{
    width: 50%;
    background: #bf0a0a;
    color: aliceblue;
}

/* About Us */
.about-us{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.exit-about{
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
    color: #011f26;
    font-weight: 700;
    font-size: 12px;
    border-radius: 50%;
    border: 2px solid #011f26;
    transition: all 0.6s;
}
.exit-about:hover{
    background-color: #035c70;
    color: aliceblue;
    border-radius: 20px;
}
.exit-about i{
    font-size: 28px;
}
.p-about{
    color: #00ffd5;
}

/*Problemas usuarios*/
.problems-container{
    overflow-y: scroll;
    max-height: 240px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.header-problem{
    background: #011f26;
}
.problem{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.problem p{
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #011f26;
    font-weight: 700;
    color: aliceblue;
}

.problem-form-container{
    padding: 8px;
}
.description{
    overflow-y: scroll;
    overflow-x: hidden;
    height: 45px;
}
.table-container{
    width: 1000px;
}
.filter-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.filter-container div{
    display: flex;
    gap: 28px;
}
.tag{
    background-color: #011f26;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    color: #00ffd5;
    transition: all 0.8s;
}
.tag:hover{
    background-color:#00ffd5;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    color: #011f26;
}
h3{
    color: #00ffd5;
}
.tag-selected{
    background-color:#13a88f;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    color: #011f26;
}