body {
    margin: 0;
    font-family: 'Karla', sans-serif;
    text-align: center;
}

/* --> HEADER <-- */


.header-inner {
    gap:10px;
    align-items: center;
    display: flex;
    width: 100%;
    margin: auto;
}

header img {
    width: 80px;
}

header {
    padding-top: 10px;
    background-color: #67595E;
    border: 1px solid black; 
    color: #EED6D3;   
}

header h1 , header h2 {
    padding: 0;
    margin: 0;
}

header h2 {
    font-size: 16px;
}
header h1 {
    font-size: 28px;
}

/* --> HEADER <-- */

/* --> RADIO LIST <-- */

.radio-list {
    border: 1px solid #bcbcbc;
    border-radius: 5px;
    font-size: 14px;
    overflow: hidden;
}

.radio:first-child {
    border-top: 0;
}

.radio {
    /* text-align: center; */
    display: flex;
    /* justify-content: center; */
    padding: 5px 10px;
    border-top: 1px solid #bcbcbc;
}

label {
    /* padding: 10px; */
    width: 100%;
    text-align: start;
    padding: 3px;
}


.animate {
    font-size: 14px;
    margin: 16px;
}

/* input:checked {
    accent-color: #bd301d;
} */


.container {
    display: flex;
    flex-direction: column;
    width: 220px;
    margin: auto;
}

button {
    background-color: #67595e;
    border: none;
    color: #eed6d3;
    font-size: 24px;
    padding: 14px;
    border-radius: 5px;
    cursor: pointer;
}



.red {
    color: #bd301d;
    font-weight: bold;
    accent-color: #bd301d;
    background-color: #fff0ee;;
  }


.modal{
    display: none;
    position: fixed;
    margin: auto;
    top: 80px;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid #67595e;
    border-radius: 5px;
    width: 420px;
    height: 490px;
    background-color: #fff0ee;
}

@media screen and (max-width: 420px) {
    .modal {
        width: 85%;
        height: 65%;
        /* background-color: rebeccapurple; */
    }
    .cat-img{
        width: 85%;
    }

 }

.modal-close-btn{
    position: absolute;
    top: 2%;
    right: 2%;
    background-color: transparent;
    border: 2px solid #555;
    color: #555;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 14px;
    cursor: pointer;
}

.modal-close-btn:hover{
    color: white;
    background-color: #bd301d;
    border: 2px solid #bd301d;
}
.cat-img{
    max-width: 300px;
    max-height: 400px;
    border-radius: 5px;
}




footer {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

footer ul {
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    list-style: none;
    bottom: 0;
    left: 0;
    right: 0;
}



footer a {
    text-decoration: none;
    color: #383838;
}


.info1 {
    margin: 30px 0px 0px 0px;
    font-size: 18px;
}

.info2 {
    margin: 10px 0px 0px 0px;
}




body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .content {
    flex: 1 0 auto; /* Prevent Chrome, Opera, and Safari from letting these items shrink to smaller than their content's default minimum size. */
    padding: 20px;
  }
  .footer {
    flex-shrink: 0; /* Prevent Chrome, Opera, and Safari from letting these items shrink to smaller than their content's default minimum size. */
    padding: 20px;
  }
  