html {
    background-color: #87AB81;
    color: white;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
    padding: 10px 20px;
}

.title{
    flex: 1;
}

.navigation{
    display: flex;
    gap: 20px;
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icons img {
    width: 100px;
    height: 100px;
    display: block;
    cursor: pointer;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    background-color: #D9D7C5;
    color: rgb(77, 78, 79);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 140px;
    height: 60px;
    margin-top: 80px;
    border-style: solid;
    border-color: black;
}


.buttons {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    margin-bottom: 80px;
}

a {
    text-decoration: none;
}

.btn {
    background-color: #D9D7C5;
    color: rgb(77, 78, 79);
    width: 250px;
    height: 120px;
    border-radius: 30px;
    border: 2px solid #2f3e46;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.btn:hover {
    transform: scale(1.05);
}

.intro {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    padding: 20px 40px;
    margin-top: 10px;
}

.logo {
    flex: 1;
}

.descr {
    flex: 2;
    text-align: center;
    font-size: 12pt;
    line-height: 2;
}