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

body {
    min-height: 200vh;
    background-color: rgb(0, 0, 0);
    font-family: sans-serif, arial;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.box {
    position: fixed;
    top: -2%;
    left: -2%;
}

a:link,
a:visited,
a:active {
    text-decoration: none;
}

.particle {
    display: block;
    width: 3.5px;
    height: 3.5px;
    background-color: #ffc107;
    position: absolute;
    box-shadow: 0 0 5px #ffc107, 0 0 10px #ffc107;
    transition: 9000ms ease-out;
}

.content {
    font-family: monospace;
    margin: 1px;
    color: white;
    padding: 50px;
}

#title {
    text-align: center;
    text-transform: uppercase;
    font-size: 4em;
    border-bottom: solid 1px white;
}

#text {
    text-align: left;
    font-size: 1.25em;
    text-transform: lowercase;
}

.app2 {
    display: inline-block;
    width: 20%;
    margin: 0 2.2% 24px;
    padding: 1px 6px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    transition: all 0.2s ease;
}

.app2:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.app2 p {
    color: rgba(255, 255, 255, 0.5);
    font-size: large;
    margin-top: 6px;
    transition: 0.2s all ease;
}

.app2:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/*Scrollbar*/

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background-color: #dfdfdf;
    border-radius: 10px;
}

@media (max-width:450px) {
.app2 {
    width: 20%;
    margin-left: 30px;
    margin-top: 20px;
    padding: 1px 6px;
}
}