*{
    margin: 0;
    padding: 0;
}

body{
    background-image: url('./Assets/bg startpg.jpg');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.StartPage{
    margin: 15px;
    background-color: #03043f65;
    align-items: center;
    padding: 25px;
    border-radius: 10px;
}

.StartPage h1{
    color: white;
    font-size: 35px;
}
.StartPage p{
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}
.StartPage a{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.StartPage button{
    background-color: #ffffff;
    color: #010235;
    font-weight: bold;
    font-size: 16px;
    padding: 8px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}
