@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:wght@400;700&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&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    height: 100%;
}

nav{
    background-color: rgba(0, 0, 0, 0.05);
}

.primary-color{
    color: #0d6efd;
}

.secondary-color{
    color: #6c757d;
}

.web_tag{
    letter-spacing: 1px;
    font-weight: 600;
}

.stmt_tag{
    font-style: none;
    font-weight: 600;
}

.dev_name{
    font-weight: 600;
    color: #2973B2;
    cursor: pointer;
}

.dev_name:hover{
    color: white;
}

.btn-group button{
    margin-top: 10px;
    width: 350px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn-group button:active{
    color: white;
    cursor: pointer;
    scale: 0.9;
}

.btn-group button:disabled{
    background-color: red ; 
    cursor: not-allowed  !important;
}

.card{
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: 0.4s;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card img{
    width: 80%;
    height: 400px;
    object-fit: cover;
    padding: 20px;
    border-radius: 5%;
}                                                                           