
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    width: 100%;
    height: 100vh;
}

h1 {
    width: 100%;
    text-align: center;
}

section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

section div {
    height: 95%;
    display: flex;
    flex-direction: column;
    text-align: justify;
    color: #FFFFFF;
    transition: all 0.3s;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.75) 0px 0.5rem 1.5rem;
    overflow: scroll;
}

section div::-webkit-scrollbar {
    width: 0;
}
