@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;500;600&display=swap');

body {
    font-family: 'Manrope', sans-serif;
    margin: 0;
}

body::-webkit-scrollbar {
    width: 0;
	background-color: #333333;
}

body::-webkit-scrollbar-thumb 
{
    background-color: #FECE60;
	border-radius: 0;
}

.wrapper {
    background: url('./bg.png') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.title {
    margin-top: 50px;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    letter-spacing: 0.785em;
    color: rgba(255, 255, 255, 0.35);
}

img {
    margin: 0 auto 30px;
}

h1 {
    font-weight: 600;
    font-size: 48px;
    line-height: 66px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

#timer {
    font-weight: 300;
    font-size: 30px;
    line-height: 41px;
    text-align: center;
    color: #FFFFFF;
}

.text-center {
    text-align: center;
}

.copy {
    display: inline-block;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    letter-spacing: 0.785em;
    margin: 0 auto 50px;
    padding-left: 16px;
}

@media (max-width: 374px) {
    h1 {
        font-size: 40px;
        margin-bottom: 16px;
    }
}