*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #E6E6E6;
}

.flex-row{
    display: flex;
    flex-direction: row;
}

.flex-column{
    display: flex;
    flex-direction: column;
}

.all-center{
    justify-content: center;
    align-items: center;
}

.text-titles{
    font-family: "Staatliches", sans-serif;
    font-style: normal;
}

.text-body{
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

#noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    background-image: url('../images/noise.jpg');
    background-repeat: repeat;
    opacity: 0.2;
    z-index: 1000;
}

.section-title{
    text-align: center;
    font-size: 10rem;
}