body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    /* background-color: black; */
    background-image: linear-gradient(to right top, #b10000, #930014, #73011a, #530a1b, #320d16, #320d16, #320d16, #320d16, #530a1b, #73011a, #930014, #b10000);
    color: white;    
    height: 100vh;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: blue; */
}

.title {
    font-size: 100px;
    text-shadow: 0 0 50px red;
}

.description {
    font-size: larger;
    font-weight: bold;
}

.buttons {
    display: flex;
}

.btn {
    margin: 20px;
    margin-left: 30px;
    margin-right: 30px;
    width: 200px;
    height: 30px;
    padding: 10px 0;
    text-align: center;
    justify-content: center;
    font-weight: bold;
    text-decoration: none;
    font-size: larger;
    color: white;
    border-radius: 10px;
    background-color: rgb(56, 56, 56);
}

.btn:hover {
    /* color: red; */
    box-shadow: inset 0 0 10px 0 red, 0 0 20px 0 red;
}