@import url("https://use.typekit.net/nug1glx.css");


body,
html {
    padding: 0;
    margin: 0;
    font-family: paralucent, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.wrapper-bg {
    width: 100%;
    display: flex;
    min-height: 100vh;
    background: url('../img/space-bg.jpg') no-repeat center center;
    background-size: cover;
    justify-content: center;
}

.container {
    width: 580px;
    min-width: 320px;
    min-height: 100vh;
    min-height: 690px;
    background-color: #fff;
    box-sizing: border-box;
    border-left: 16px solid #9B9155;
    border-right: 16px solid #9B9155;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-size: 36px;
    text-align: center;
    font-weight: 300;
}

.address {
    position: relative;
    width: 280px;
    color: #CDC8A9;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    box-sizing: border-box;
}

.address:before {
    content: '@';
    position: absolute;
    width: 20px;
    height: 20px;
    top: -40px;
    left: calc(50% - 10px);
}

a.btn {
    height: 50px;
    font-size: 20px;
    text-decoration: none;
    line-height: 50px;
    border-radius: 25px;
    padding: 0 24px;
    text-transform: lowercase;
    cursor: pointer;
}

#about-us,
#back-btn {
    background-color: #CDC8A9;
    color: #000;
}

.countdown {
    display: flex;
    width: 100%;
    justify-content: space-around;
    box-sizing: border-box;
    padding-top: 50px;
    padding-bottom: 70px;
    user-select: none;
}

.days, .hours, .minutes, .seconds {
    font-size: 50px;
    position: relative;
    width: 60px;
    text-align: center;
}

.days:after,
.hours:after,
.minutes:after,
.seconds:after {
    position: absolute;
    bottom: -20px;
    width: 30px;
    height: 10px;
    font-size: 14px;
    color: #9B9155;
    text-align: center;
    width: 100%;
    left: 0
}

.days:after {
    content: 'days'
}
.hours:after {
    content: 'hours'
}
.minutes:after {
    content: 'minutes'
}
.seconds:after {
    content: 'seconds'
}

.days[special="1"]:after { content: 'day' }
.hours[special="1"]:after { content: 'hour' }
.minutes[special="1"]:after { content: 'minute' }
.seconds[special="1"]:after { content: 'second' }

.container span {
    font-size: 20px;
}

.ufo-img {
    margin: 30px 0;
    user-select: none;
}

.social {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-sizing: border-box;
}

.insta,
.email {
    color: #9B9155;
    text-decoration: underline;
    margin-top: 30px;
    box-sizing: border-box;
    position: relative;
}

.insta:before {
    width: 20px;
    height: 20px;
    position: absolute;
    left: calc(50% - 10px);
    content: '';
    background: url('../img/icon/insta.svg') no-repeat center center;
    background-size: 20px;
}

p.about-us {
    /* width: 300px; */
    text-align: center;
    font-style: italic;
    font-size: 14px;
    font-weight: 300;
    padding: 50px 15%;
    box-sizing: border-box;
    position: relative;
}

p.about-us:before,
p.about-us:after {
    content: '';
    width: 80%;
    height: 1px;
    background-color: #9B9155;
    position: absolute;
    box-sizing: border-box;
    left: calc(50% / 5)
    /* left: 0; */
}

p.about-us:before {
    top: 0;
}

p.about-us:after {
    bottom: 0;
}

#back-btn {
    margin-top: auto;
}




