html, body {
    margin: 0;
    font-family: 'Karla', sans-serif;
    background-color: black;
}

/*typography*/

h1, h2, h3{
    text-align: center;
}

h1, h2{
    color: #EED6D3;
    margin: 0;
}

h1{
    font-size: 28px;
}

h2 {
    font-size: 16px;
}

h3{
    margin: 25px;
}

/* layout */
header{
    background-color: #67595E;
}
.header-inner{
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 370px;
    gap: 15px;
    padding: 10px 0 0 0;
}

.pumpkin-img{
    width: 80px;
}

.controls-container{
    display: flex;
    flex-direction: row;
    width: 50%;
    margin: auto;
}

/* controls */
.emotion-radios{
    display: flex;
    flex-direction: column;
    width: 43%;
    border-radius: 5px;
}

.radio{
    display: flex;
    align-items: center;
    padding: 4px 8px;
    background-color: #f8f3f2;
}
.radio:hover{
    background-color: #fddad6;
    color: #bd301d;    
    border-radius: 4px;
}

label{
    font-size: 14px;
    padding: 3px;
    width: 100%;
    cursor: pointer;
}

.highlight{
    background-color: #fddad6;
    color: #bd301d;
    font-weight: bold;
    accent-color: #bd301d;
}
.radio:first-child{
    border-radius: 5px 5px 0 0;
}
.radio:last-child{
    border-radius: 0 0 5px 5px;
}

input[type="radio"]{
    cursor: pointer;
}

.gifs-check{
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    margin: auto;
    color: wheat;
    font-weight: bold;
}

.gifs-check-label{
    margin-right: 5px;
    display: block;
    text-align: center;
}
.gifs-only-option{
    display: block;
    margin: auto;
    margin-top: 10px;;
    width: 20px;
    height: 20px;
}

.get-image-btn{
    background-color: #67595e;
    color: #eed6d3;
    padding: 15px 19px;
    font-size: 24px;
    border: none;
    border-radius: 5px;
    /* margin-bottom: 8px; */
    width: 30%;
}

.get-image-btn:active {
    background-color: #564a4e;
    /* border: 3px solid #a4dbf3; */
}

/* modal */
.outer{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    overflow: auto;
    padding: 0 20px;
    z-index: 2;
}
.meme-modal{
    /* position: absolute;
    margin: auto;
    padding: 10px;
    top: 80px;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    width: 420px;
    height: 1490px;
    background-color: #fff0ee;

    max-height: calc(100vh - 210px);
    overflow-y: auto; */
    background-color: #fff;
      border-radius: 3px;
      max-width: 500px;
      margin: 50px auto;
      padding: 20px;
}
.meme-modal-inner {
    /* position: absolute; */
    display: flex;
    flex-wrap: wrap;
    justify-items: stretch;
    justify-content:flex-start;
    top: 50%;
    left: 50%;
}

.cat-img{
    max-height: 450px;
    max-width: 100%;
    border-radius: 5px;
}

.meme-modal-close-btn{
    position: absolute;
    top: 0%;
    right: -10%;
    background-color: transparent;
    border: 1px solid #fff0ee;
    color: #fff0ee;
    border-radius: 50%;
    line-height: 25px;
    padding: 2px 6px;
    font-size: 34px;
    font-weight: bold;
}

.meme-modal-close-btn:hover{
    color: white;
    background-color: #bd301d;
    border: 2px solid #bd301d;
    cursor: pointer;
}