* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    text-align: center;
    overflow: hidden;
}

body {
    transform: scale(0.8);
}

a {
    text-decoration: none;
    color: white;
}
/* background */
.backgroundmob {
    background-image: url("/24-25Webs/pcclinicwebpage/resources/images/background_mob.png");
    background-repeat: no-repeat;
    background-size: cover;
}

/* start of everything */
.landingpage {
    width: 100%;
    height: 100%;
    
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.screencenter {
    width: 100%;
    height: fit-content;
    margin-top: -75px;
}

.logo {
    min-width: 200px;
    max-width: 300px;
    width: 80%;
    padding-bottom: 25px;
}

.button {
    background-color: #1E90FF;
    color: white;

    border: none;
    border-radius: 25px;

    font-family: "Itim", serif;
    font-size: 40px;

    min-width: 200px;
    max-width: 350px;
    width: 30%;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto auto auto;
}

.button a {
    width: 100%;
    display: block;
}

.button:hover {
    cursor: pointer;
    background-color: #115ba5;
    color:rgb(254, 236, 201);
}
/* tablets and bigger devices */
@media only screen and (min-width: 580px) and (max-width: 1200px) {
    .backgroundmob {
        background-image: url("/24-25Webs/pcclinicwebpage/resources/images/background_tab.png");
    }
    .logo {
        min-width: 400px;
        max-width: 450px;
    }
    .button {
        height: 65px;
        font-size: 44px;
        max-width: 285px;
    }
}
/* laptops and desktops */
@media only screen and (min-width: 1200px) {
    .logo {
        min-width: 400px;
        max-width: 400px;
    }
    .backgroundmob {
        background-image: url("/24-25Webs/pcclinicwebpage/resources/images/background_lap.png");
    }
    .button {
        max-width: 250px;
        font-size: 48px;

        margin: -10px auto auto auto;
    }
}