* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'manrope';
    font-weight: 200;
    background-color: #3d357e;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main a{
    color: #fff;
}

h1{
    font-weight: 150;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'manrope';
}

header img{
    max-width: 180px;
    height: auto;
    margin: 20px auto 40px auto;
    display: block;
}

main img{
    width: 250px;
    height: auto;
    margin-bottom: 70px;
}

header{
    display: flex;
    justify-content: center;
}


@font-face {
    font-family: 'manrope';
    src: url(fonts/Manrope-VariableFont_wght.ttf) format('truetype');
}