@font-face {
    font-family: 'Roboto-Regular';
    src: url('../fonts/Roboto-Regular.ttf');
}

body {
    font-family: 'Roboto-Regular';
    width: 100%;
    height: 80vh;
    margin: 0;
    padding: 0;
}
#content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.translate-box {
    width: 528px;
}

#translate-boxes {
    text-align: left;
}

p {
    font-weight: bold;
    font-size: 25px;
}

textarea {
    font-family: roboto-regular, sans-serif;
    box-sizing: border-box;
    border: 1.7px solid lightgray;
    font-size: 21px;
    border-radius: 10px;
    resize: none;
    width: 100%;
    height: 165px;
    padding: 15px;
    color: #636368;
    width: 98%;
}

textarea:focus {
    outline: none;
}

textarea::placeholder {
    color: black;
}

#inpEn {
    background: #F5F5F5;
    border: none;
    pointer-events: none;
}

.language-options {
    display: inline-flex;
    height: 36px;
    padding: 5px 10px 5px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-bottom: 2px solid #1A73E8;
    margin-left: 3%;
    font-weight: bold;
    color: #1A73E8;
    font-size: 13px;
}
.language-options:nth-child(2), .language-options:nth-child(3) {
    border-bottom: 2px solid red;
    color: #636368;
    margin-left: -0.8%;
    margin-top: -5px;
    border:none;
}
.language-options:nth-child(2):hover, .language-options:nth-child(3):hover {
    background: #f5f5f5;
    transition: all 0.1s;
    color: black;
    cursor: pointer;
}
.language-options:hover {
    background: #1a73e80d;
    transition: all 0.1s;
    cursor: pointer;
}

.material-symbols-outlined {
    color: #c0c0c9;
    cursor: pointer ;
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}

.material-symbols-outlined:nth-child(2) {
    margin-left: 8%;
    color: #c0c0c9;
    pointer-events: none;
    user-select: none;
    font-variation-settings:
    'FILL' 100,
    'wght' 200,
    'GRAD' 0,
    'opsz' 4
}
.material-symbols-outlined:nth-child(3) {
    pointer-events: none;
    user-select: none;
    font-variation-settings:
        'FILL' 100,
        'wght' 200,
        'GRAD' 0,
        'opsz' 4
}

#translate-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    border: 1px solid;
    margin-left: 3%;
    margin-top: -40px;
    margin-bottom: 20px;
    width: 94%;
}
#right-icons{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 30%;
    margin-top: 5px;
}
#letters {
    color: gray;
    font-size: 12px;
}
#mic:hover {
    color: #1A73E8;
    cursor: pointer;
    transition: all 0.1s;
}
header{
    height: 64px;
    width: 100%;
    border-bottom: 1px solid lightgray;
    background-image: url(../images/cat_translator.png);
    background-size: 145px;
    background-repeat: no-repeat;
    background-position: center left 2%;
}
@media only screen and (max-width:600px){
    .translate-box {
        width: 328px;
    }
    #right-icons{
        width: 35%;
    }
}
@media only screen and (max-width:360px){
    .translate-box {
        width: 280px;
    }
    #right-icons{
        width: 40%;
    }
}