body {
    margin: 0;
}

.studio_background{
    background-image: url("../images/Studio_Interhouse_achtergrond_BW.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;
    width:100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

.interhouse_studio {
    max-width: 18rem;
    margin-left: 4rem;
    padding-top: 1rem;
}

.interhouse_studio_logo {
    padding: 1rem;
}

.studio_title {
    font-family: 'arboria', sans-serif;
    color: white;
    font-size: 7rem;
    text-align: center;
}

.studio_404_title {
    margin: 1rem;
}

.studio_tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.studio_tile {
    font-family: 'arboria', sans-serif;
    width: 20rem;
    height: auto;
    color: black;
    background-color: white;
    text-align: center;
    border-radius: 1rem;
    margin: 1rem;
}

.studio_arrow {
    background-color: black;
    width: 35px;
    padding: 0 30px;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    transition: background-color 0.3s;
}

.studio_arrow:hover {
    background-color: #626262;
}

.studio_tile_comingsoon{
    font-style: italic;
}

.studio_user, .studio_password {
    display: block;
    margin: 0.5rem 0;
}

.studio_user input, .studio_password input {
    font-family: 'arboria', sans-serif;
}

.studio_user label {
    margin: 0 17px;
} 

.studio_password label {
    margin: 0 6px;
}

.studio_login_btn {
    display: block;
    margin: 1rem auto;
    padding: 0.5rem 0.8rem;
    background-color: #df7e62;
    font-family: 'arboria', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.studio_login_btn:hover {
    background-color: #cf4a25;
}