*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body{
    background-color: #111;
    font-family: 'Montserrat' sans-serif;
    /* width: 100%; */
    height: 100%;
    
}
.container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    height: 100vh;
}
.language{
    display: inline-block;
    margin: 10px 0;
}
.language a{
    color: white;
    font-weight: 900;
    text-decoration: none;
    font-size: 40px;
}
.language a.tr:hover{
    color: rgb(141, 13, 13);
    transition: all .3s;
    border-bottom: 2px solid white;
}
.language a.en:hover{
    color: #012169;
    transition: all .3s;
    border-bottom: 2px solid white;
}

