@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;700&display=swap');

body {
    background-color: #131316;
    color: white;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
}

section {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 101vh;
}

section:nth-child(2) {
    background: steelblue;
}

.hidden {
    opacity: 0;
    filter: blur(5px);
    translate: -100%;
    transition: all 4s;
}

.show {
    opacity: 1;
    filter: blur(0);
    translate: 0;
}