body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.header {
    /* height: 100px; */
    width: 100%;
    background-color: #333;
    color: white;
    padding: 20px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.title {
    font-size: 50px;
    text-align: center;
    margin: 0 auto;
    /* position: absolute; */
    /* left: 50%;
    transform: translateX(-50%); */
}

.login-button {
    /* margin-right: 20px; */
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    position: absolute;
    top: 50%; /* moves top of button to 50% of the parent */
    transform: translateY(-50%); /* moves button up by half of its height (i.e. accounts for button's height) */
    right: 20px;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #0056b3;
}

.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.links-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.link-button {
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 100px;
    font-size: 100px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

.link-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.test {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px 0px;
}

#login-form {
    width: 500px;
    font-size: 15px;
    /* padding: 50px; */
    text-align: center;
}

#login-form {
    margin: 20px 0px;
    display: flex;
    justify-content: right;
}

/* Media Query for medium screens */
@media (768px <= width <= 1300px) {
    .title {
        font-size: 30px;
    }

    .login-button {
        padding: 10px 20px;
        font-size: 1.5rem;
    }

    .content {
        margin-top: 20px;
    }

    .links-container {
        gap: 50px;
    }

    .link-button {
        padding: 50px;
        font-size: 50px;
    }

    #login-form {
        width: 400px;
        font-size: 15px;
    }
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .title {
        font-size: 20px;
    }

    .login-button {
        padding: 5px 10px;
        font-size: 1rem;
    }

    .content {
        margin-top: 20px;
    }

    .links-container {
        gap: 20px;
        padding: 0px 20px;
    }

    .link-button {
        padding: 30px;
        font-size: 30px;
    }

    #login-form {
        width: 300px;
        font-size: 15px;
    }
}