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

body {
    background: none;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

main {
    background-image: url('images/paper_background.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 40px;
}

header {
    text-align: left;
}

.paragraph {
    margin-top: 40px;
    text-align: left;
}

#p2 {
    margin-top: 20px;
    text-align: right;
}

#logo {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

/* Media queries */
@media (max-width: 768px) {
    #logo {
        width: 30px;
        bottom: 15%;
    }
}