@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Tilt+Neon&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Tilt Neon", sans-serif;
    text-decoration: none;
    list-style: none;
    transition: all .2s linear;
}

section{
    padding: 2rem 7%;
    min-height: 100dvh;
    cursor: default;
    background: #f2ffff;
    width: 100%;
    height: 100%;
}


.closed{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.closed .container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    width: 100%;
    height:70dvh;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0,0,0, .080);
}
.closed .container h1{
    font-size: clamp(2rem, 5vw, 5rem);
    color: #ff0000;
    font-weight: bolder;
}

.closed .container h2{
    color: #000000;
    text-align: center;
    font-size: clamp(2rem, 5vw, 4rem);
}

.closed .container h3{
    font-size: clamp(1.5rem, 3vw, 4rem);
    color: #0045ad;
    font-weight: 500;
}
.closed .container h3 span{
    font-weight: bolder;
    font-style: oblique;
}
.closed .container h3 span strong{
    font-size: 1.5rem;
    font-weight: 400;
}

.closed .container a{
    font-size: clamp(2rem, 5vw, 4rem);
    color: #333;
}