body{
    box-sizing: border-box;
    font-family: "Josefin Sans", sans-serif;
    padding: 0;
    margin: 0; 
}

.main {
    background-image: url("img/LI.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.uppercase {
    text-transform: uppercase;
    color: #d81159;
    font-size: 40px;
    margin-top: -400px; /* Adjust the value as needed */
}

.start-link {
    text-align: center;
    margin-top: -85px;
}

.start-link a {
    text-decoration: none;
    color: #ffffff;
    background-color: #a4161a;
    padding: 10px 20px;
}

.start-link a:hover{
    background-color: #660708;
}

.stop-link {
    text-align: center;
    margin-top: 30px;
}

.stop-link a {
    text-decoration: none;
    color: #ffffff;
    background-color: lightskyblue;
    padding: 10px 20px;
}

.stop-link a:hover{
    background-color: goldenrod;
}