* {
    box-sizing: border-box;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Raleway', sans-serif;
}

header {
    height: 100px;
    width: 100%;
}

main {
    flex-grow: 1;
}

footer {
    height: 100px;
}

a{
    text-decoration: none;
}

