* {
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Great Vibes', cursive;
}

.count{
    display: grid;
    font-family: 'Great Vibes', cursive;
    place-items: center;
    width: 100%;
    min-height: 30vh;
    display: block;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background-color: #33333309;
}

.countdown{
    display: flex;
    justify-content: space-evenly;
    width: auto;
    flex-wrap: nowrap;
    padding: 10px;
}

.countdown div{
    display: grid;
    place-items: center;
}

h1{
    font-family: 'Great Vibes', cursive;
    text-align: center;
    color: #fff;
    font-size: 20px;
    padding: 30px 10px;
}

p{
    display: grid;
    place-items: center;
    border: solid 1px #fff;
    height: 50px;
    width: 50px;
    border-radius: 60%;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    background-color: #b1d1e8b2;
}

span{
    display: block;
    padding: 10px;
    text-align: center;
    color: #292a2ba0;
    font-size: 1rem;
    font-weight: 400;
}

.final-sms{
    position: absolute;
    min-height: 10vh;
    display: grid; 
    place-items: center stretch;
    transform: translateX(-100%);
    transition: ease-in-out 0.5s;
    background-color: #3333330f;
}

.final-sms h2{
    text-align: center;
    font-size: 60px;
    color: #fff;
}

.container {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
}

.hero {
    background-image:linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
    url('../img/Image4.jpeg');
    background-size: cover;
    background-position: center -1px right;
    min-height: auto;
    height: 100vh;
    color: #fff;
}

.nav {
    --state-close: scale(0);
    --state-hamburguer: scale(1);
    --state-menu: translate(-100%);

    padding: 20px 0;
    display: grid;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: repeat(2, max-content);
}

.nav:target{
    --state-close: scale(1);
    --state-hamburguer:scale(0);
    --state-menu:translate(0);
}

.nav__logo {
    font-size: 2.5rem;
    z-index: 1;
}

.nav__hamburguer,
.nav__close {
    cursor: pointer;
    grid-column: -2/-1;
    grid-row: 1/2;
    transition: .4s transform;
}

.nav__hamburguer {
    transform: var(--state-hamburguer);
}

.nav__close {
    transform: var(--state-close);
}

.nav__icon {
    width: 40px;
}

.nav__links {
    background-color: #00000078;
    background-repeat: repeat;
    backdrop-filter: blur(10px);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;

    display: grid;
    align-content: start;
    gap: 2em;
    padding-left: 5%;

    transform: var(--state-menu);
    transition: .3s transform;
}

.nav_item{
    list-style: none;

}

.nav__link{
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

@media (min-width:768px) {
    .nav {
        --state-hamburguer: scale(1);
        --state-menu: translate(-100%);
    }
    
    .nav:target{
        --state-close: scale(0);
    }
}