* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}

::selection {
    background: #5A4FCF;
    color: white;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background-color: black;
}

::-webkit-scrollbar-thumb {
    background-color: gray;
    border-radius: 10px;
    transition: 0.2s;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #505050;
    transition: 0.2s;
}

html, body {
    margin: 0;

}

body {
    background-color: black;
    color: white;
}

div {
    display: block;
}

a {
    text-align: center;
}

.twitter:hover {
    color: white;
}

.twitter {
    text-decoration: none;
    color: blue;
}

.main-container {
    text-align: center;
    margin: auto;
    width: 50%;
    padding: 100px 0;
}

h1 {

    font-weight: bold;
}

h1 img {
    width: 350px;
    height: 150px;
}

.title {
    font-weight: bolder;
    font-size: 40px;
}

p {
    font-size: 25px;
    font-weight: normal;
}

a {
    font-size: 25px;
}

.twitter-follow {
    text-decoration: none;
    font-weight: bold;
    color: #5A4FCF;
}

.twitter-follow:hover {
    color: #473eaa;
}