body {
    background-color: rgb(35, 31, 32);
    font-family: 'Signika', sans-serif;
}

.top {
    background-color: rgb(37, 37, 43);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items:  center;
    padding: 100px;
}

b {
    color: rgb(37, 37, 43);
    font-weight: 600;

}

.logo {
    color:  rgb(227, 221, 195);
    font-size: 300%;
    font-weight: bold;
    letter-spacing: 10px;
    cursor: pointer;
    text-decoration: none;
}

.logo:hover, .span-logo:hover {
    text-shadow: 5px 5px 10px rgb(17, 15, 16);
}

.span-logo {
    font-size: 75%;
    font-weight: 400;
    letter-spacing: 5px;
    display: inline-block;
}

.menu {
    list-style-type: none;
    row-gap: 10px;
    flex-direction: row;
    font-size:  250%;
}

.menu li {

    display: inline-block;
    padding: 0px 20px;

}

.menu a {
    color: beige;
    text-decoration: none;
    font-weight: 400;
}

.menu a:hover {
    font-weight: lighter;
    transition: all 0.2s ease 0s;
    color: rgb(77, 74, 74);
}

.contact-button {

    padding: 14px 14px;
    background-color: rgb(36, 99, 169);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s easy 0s;
    font-size: 180%;
    font-weight: bold;

}

.contact-button a{

    color:  rgb(227, 221, 195);
    text-decoration: none;
    font-weight: 400;

}

.contact-button:hover{

    transition: all 0.3s easy 0s;
    background-color: rgb(77, 74, 74);
    box-shadow:5px 5px 10px rgb(35, 31, 32);


}

.container {
    color:  rgb(227, 221, 195);
    font-size:  150%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: row;
    padding: 100px;
    
}

.container img {
    margin-right: 55px;
    display: inline-block;
    width: 50%;
    height: 50%;
}

.left {
    background-color: rgb(227, 221, 195);
    margin-right: 10px;
    color: rgb(37, 37, 43);
    padding: 100px;
    height: auto;
}

.center {
    background-color: rgb(36, 99, 169);
    margin-right: 10px;
    padding: 100px;
    height: auto;
}

.right {
    background-color: rgb(227, 221, 195);
    margin-right: 10px;
    color: rgb(37, 37, 43);
    padding: 100px;
    height: auto;
}

.footer {
    color:  rgb(227, 221, 195);
    background-color: rgb(37, 37, 43);
    font-size:  100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 50px;
}