/* Created by Conrad MacKethan on 6/2/23 */
@import url('https://fonts.googleapis.com/css?family=Chivo:400,700');
* {
    cursor: default;
}
body {
    margin: 0;
    font-family: 'Chivo', sans-serif;
}
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #141E30;
    background: -webkit-linear-gradient(to right, #243B55, #141E30);
    background: linear-gradient(to right, #243B55, #141E30);
}
#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
}
#content * {
    position: relative;
    z-index: 1;
    color: white;
}
h1 {
    font-weight: bold;
    font-size: 3.5em;
    margin-bottom: 0;
}
p {
    opacity: 0.8;
    font-size: 2em;
    margin-top: 0;
}
a:hover {
    cursor: pointer;
}
#buttons a {
    padding: 10px;
    margin: 20px 20px;
    background-color: darkslategray;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    width: 25%;
}
#buttons a:hover {
    opacity: 0.65;
    transition: all 0.3s;
}