body {
    background-color: #F9F9F9;
    font-family: 'Ubuntu Mono', monospace;
    font-size: 18px;
}

.container {
    width: 100%;
    max-width: 1140px;
}

.switch-lng {
    text-align: right;
}

.lang-switch {
    cursor: pointer;
    transition: .3s;
}

.lang-switch:hover {
    color: brown;
}

.mute {
    cursor: pointer;
    transition: .3s;
}

.mute:hover {
    color: #a25151;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px);
    text-align: center;
}

.pic{
    display: flex;
    width: 300px;
    height: 300px;
    background-image: url('./assets/img/1.png');
    background-repeat: no-repeat;
}

.go {
    text-transform: uppercase;
    width: 350px;
    height: 50px;
    border-radius: 20px;
    cursor:pointer;
    transition: .3s;
    font-weight: bold;
    background-color: #316161;
}

.go:hover {
    background-color: green;
}

.joke {
    font-size: 24px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 30px;
    font-weight: bold;
  }

.gitlink {
    color:black;
    cursor: pointer;
    text-decoration: none;
    transition: .3s;
  }

.gitlink:hover {
    color:brown;
}

.rslogo {
    width: 135px;
    height: 50px;
    transition: .3s;
  }

.rslogo:hover {
    filter: invert(76%) sepia(15%) saturate(138%) hue-rotate(7deg) brightness(92%)
    contrast(87%);
  }

.active {
    color: #316161;
    font-weight: bold;
}

.soundOff {
    text-decoration: line-through;
}