@import url('https://font.nmscd.com/assets/font/NMSFuturaProBook_Kerned/Web-TT/NMSFuturaProBook_Kerned.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: NMSFuturaProBook;
}

header {
    display: flex;
    width: 100%;
    height: 80px;
    margin-bottom: 10px;
    background-color: #2e3440;
    justify-content: space-between;
    align-items: center;
    color: #eceff4;
}

.main {
    width: 100%;
    display: flex;
    justify-content: center;

}

.logos {
    display: flex;
    justify-content: space-evenly;
}

#explorer, #atlas {
    width: 60px;
}

h1 {
    padding: 0;
    margin-left: 15px;
}

table {
    border-collapse: collapse;
    padding: 5px;
    margin: 0 10px 10px 10px;
    width: 100%;

}

th {
    text-align: center;
    background-color: #3b4252;
    border: solid 1px #eceff4;
    color: #eceff4;
    padding: 5px;
}

td {
    padding: 5px;
    border: solid 1px #d8dee9;
    border-collapse: collapse;
}

footer {
    background-color: #2e3440;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    width: 100%;
}

footer a {
    color: #eceff4;
    text-decoration: none;
}

.contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    gap: 10px;
}

.contacts a img {
    display: block;
}

.email img {
    width: 30px;
    margin-right: 5px;
}