html {
    scroll-behavior: smooth;
}



body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    min-width: 320px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    line-height: 2;
    color: #1C1C1C;


}

.header {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.main {
    max-width: 1440px;
    margin: 0 auto;
}


#field {
    width: 300px;
    height: 300px;
    background-color: #BDAE82;
    display: flex;
    flex-wrap: wrap;
}

#result-wrapper {
    position: absolute;
    width: 50%;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1C1C1C;
    color: #fff;
    display: flex;
    flex-flow: column;
    text-align: center;
    justify-content: space-between;
    opacity: .9;
    border-radius: 30px 30px;
    display: none;
    padding: 5px;
}

#btn {
    cursor: pointer;
}

#btn:hover {
    background-color: #1C1C1C;
    color: #BDAE82;
}

.cell {
    width: 100px;
    height: 100px;
    border: 1px solid #fff;
    box-sizing: border-box;
    font-size: 60px;
    color: #1C1C1C;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-wrapp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 40px);
    max-width: 1440px;
    margin: 0 auto;
    padding: 5px 20px;
    font-size: 20px;
}

.footer-data {
    display: flex;
    align-items: center;
}

.copyright {
    padding-right: 20px;
}

.github {
    color: #1C1C1C;
    text-decoration: none;
    padding: 0 20px;
    transition: .3s;
    cursor: pointer;
}

.github:hover {
    color: #BDAE82;
    cursor: pointer;
    font-size: x-large;
}

.rss {
    width: 135px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('./img/rss.svg');
    transition: .3s;
    cursor: pointer;
    filter: invert(95%) sepia(100%) saturate(22%) hue-rotate(310deg) brightness(105%) contrast(105%);
}

.rss:hover {
    filter: invert(26%) sepia(15%) saturate(638%) hue-rotate(7deg) brightness(92%) contrast(87%);
}



@media (max-width: 768px) {
    body {
        background-size: cover;
    }

}