@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Marck+Script&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #fff;
}

*::-webkit-scrollbar {
    width: 5px;
    background-color: none;
}

*::-webkit-scrollbar-thumb {
    width: 5px;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 3px;
}

body {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    transition: 1s;
}

.container {
    box-sizing: border-box;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    transition: 1s;
    position: relative;
}

.blur {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    filter: blur(4px);
    z-index: 1;
    background: no-repeat center / cover;
    transition: .5s;
}

.header {
    background: rgba(0, 0, 0, .5);
    padding: 20px;
    z-index: 5;
}

.title {
    font-weight: 700;
    text-transform: uppercase;
}

.main {
    background: rgba(0, 0, 0, .5);
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.quote {
    box-sizing: border-box;
    padding: 0 20px;
    flex: 1;
    margin: 0 auto;
}

.quote__wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Marck Script', cursive;
    transition: .5s;
}

.quote__text, .quote__author {
    font-family: 'Marck Script', cursive;
    font-size: 64px;
    text-align: center;
    transition: .5s;
}

.quote__text {
    box-sizing: border-box;
    max-height: 40vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 10px;
    position: relative;
}

.quote__author {
    margin-top: 20px;
    font-size: 48px;
}

.button {
    box-sizing: border-box;
    appearance: none;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 5px;
    color: #000;
    cursor: pointer;
    font-size: 16px;
    padding: 20px 40px;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0 0 40px 40px #fff inset, 0 0 0 0 #fff;
    transition: all 150ms ease-in-out;
}

.langs {
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
}

.lang {
    cursor: pointer;
    transition: .5s;
}

.lang:hover {
    color: #bebebe;
    text-shadow: #000;
}

.lang_active {
    font-weight: 700;
    cursor: default;
}

.lang_active:hover {
    color: #fff;
    text-shadow: none;
}

.button:hover {
    color: #fff;
    outline: 0;
    box-shadow: 0 0 10px 0 #fff inset, 0 0 10px 4px #fff;
}

.footer {
    background: rgba(0, 0, 0, .5);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.link {
    text-decoration: none;
    transition: .5s;
}

.link:hover {
    color: #bebebe;
    text-shadow: #000;
}
