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

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

body {
    display: grid;
    place-items: center;

    width: 100vw;
    overflow-x: hidden;

    color: white;
    background-color: #4A4C51;
    font-family: Inter, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

ul, ol {
    padding-left: 20px;
}

.content {
    flex-direction: column;
    justify-content: start;
    align-items: center;
    flex-grow: 1;
    width: 100vw;
    max-width: 100vw;
    padding: 5vh 25vw;
}

@media screen and (max-width: 720px) {
    .content {
        padding: 5vh 25px;
    }
}

.content > * {
    padding-top: 20px;
}

.block {
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 5vh;
}

.block > * {
    padding-top: 20px;
}
