* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bahnschrift';
    font-weight: 100;
    font-size: 9pt;
    letter-spacing: 1px;
    line-height: 16px;
    background: white;
    height: 100vh;
    max-width: 1400px;
    margin: auto;
    cursor: url('./../imgs/cursor.svg'), auto;
}

img {
    width: 100%;
}

hr {
    width: 100%;
    border: 1px solid #e5e5e5;
    margin: 20px 0;
}

#main {
    height: 100%;
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media(max-width: 768px) {
    #main {
        padding: 40px 20px;
    }
}