@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

body {
    background-color: #d8d8d8;
}

.wrapper {
    width: 1150px;
    margin-left: auto;
    margin-right: auto;
}

.wrapper > * {
    text-align: center;
}

.logo {
    margin-top: 3rem;
}

.offcial {
    margin-top: 2rem;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 3rem;
}

.countdown {
    margin-top: 1rem;
    height: 3rem;
}
.countdown p {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 3rem;
    transition: all 1s ease-out;
}

.hidden {
    opacity: 0;
}

.counter {
    color: #E67200;
    font-size: 2.2rem;
}

.goods {
    margin-top: 2rem;
    height: 350px;
}

.goods img {
    height: 100%;
}