iframe {
    width: 100%;
    height: 100%;
}

#firefox {
    background-color: #2d2d2d;
    z-index: 3;

    opacity: 0;
}

#firefox_bar {
    width: 100%;
    height: 5%;

    background-color: #010100;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  
    gap: 0.5rem;
  
    cursor: pointer;
}
#firefox-tabs{
    flex: 1;
    height: 80%;
}
.firefox-tab{ 
    height: 100%;
    width: fit-content;
    
    background-color: #2d2d2d;
    border-radius: 6px;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    
    padding-left: 1rem;
    padding-right: 1rem;
}
.firefox-icon{
    height: 80%;
    width: auto;

    aspect-ratio: 1/1;

    margin-left: 0;
    margin-right: 1vw;
}
.firefox-tab-text {
    height: 80%;
    width: 100%;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    white-space: nowrap;

    gap: 1.5vw;
}
#firefox_search {
    width: 100%;
    height: 5%;

    background-color: #2d2d2d;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    white-space: nowrap;
}
.url {
    width: 60%;
    height: 60%;

    box-sizing: border-box;
    background-color: #010100;
    resize: none;

    padding-left: 1vw;
    padding-right: 1vw;
    overflow: hidden;

    white-space: nowrap;
}
#firefox_website {
    width: 100%;
    height: 90%;

    background-color: #2b2a33
}

@media screen and (max-width: 1600px) {
    #firefox {
      width: 100vw;
      height: 100%;
    }
}