@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
::-moz-selection { /* Code for Firefox */
    color: white;
    background-color: #154e47;
}
::selection {
    color: white;
    background-color: #154e47;
}
* {
    font-family: 'Lexend', sans-serif;
}
html {
    height: 100vh;
    overflow-x: hidden;
}
body {
    background-image: url("../media/pictures/kowalski/background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    margin: 0;
    overflow-x: hidden;
}
h1 {
    text-align: center;
    font-size: 50px;
    overflow-wrap: break-word;
}
button {
    border-radius: 40px;
    border: none;
    width: 200px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 20px;
}
button:hover {
    background-color: #154e47;
    color: white;
}
button:active {
    background-color: #0c2e2a;
    color: white;
}
p {
    font-size: 30px;
    line-height: 1;
    margin-top: 2px;
}
a {
    color: #1f8e7f;
}
#paragraph {
    color:red;
}
#container {
    /* From https://css.glass */
    background: rgba(0, 0, 0, 0.08);
    border-radius: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin: 0 auto;
    min-height: 600px;
    height: auto;
    max-width: 800px;
    width: 70%;
    padding: 6%;
    text-align: center;
    overflow: hidden;
    margin-top: 40px;
}
#output {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}
#first {
    color: #1f8e7f;
}
#second {
    color: #d6caa2;
}
#third {
    color: #93a8e1;
}
#fourth {
    color: #bacdd7;
}
#fifth {
    color: #b6a69b;
}
#sixth {
    color: #c1dcfd;
}
#seventh {
    color: #dc7f86
}
#footer {
    background: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    height: 100px;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 60px;
}
#footer_paragraph {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 30px;
}

@media(max-width: 600px) {
    h1 {
        font-size: 36px;
    }
}