@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

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

body {
    background-color: #000000;
    color: #CCCCCC;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #ba9b4e;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.logo-wraper > img {
    width: 750px;
    max-width: 80%;
}

.contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
}

.phone {
    padding: 30px 0;
}