body {
    background-color: #01012d;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;

    background-image: url('images/bg.jpg');
    background-size: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

.left {
    width: 50%;
    height: 100vh;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #01012dbf 99%, transparent);
}

.left h1 {
    margin-top: 150px;
}

.left h2 {
    margin-bottom: 200px;
}

.left .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.left .buttons .button {
    margin: 10px 0;
    background-color: #00000000;
    color: #960000;
    padding: 10px 20px;
    border: 2px solid #960000;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: bold;
    transition: background-color 0.3s;
    transition: border-radius 0.3s;
}

.left .buttons .button:hover {
    background-color: hsla(0, 100%, 29%, 0.363);
    border-radius: 10px;
    transition: background-color 0.3s;
    transition: border-radius 0.3s;
}

.left h1 {
    font-size: 5rem;
    text-align: center;
}

.right {
    width: 50%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 50%;
    color: white;
    text-align: center;
    padding: 10px 0;;
}

footer a {
    margin: 20px;
}