@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    color: #333333;
}
header {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 10;
}
#main {
    position: relative;
}
#logo-pane {
    /* position: absolute; */
    top:0; left: 0;
    width:100%;
    height: 100px;
    z-index:100;
}
#logo {
    width: 60%;
    min-width: 350px;
    position: absolute;
}
#owner-login {
    margin-top: 1.5em;
    /* display: flex; */
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
}
#modal-list-pets {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
}
.centered {
    display: flex;
    justify-content: center;
}
.subtitle {
    margin: 1.5em 0 0 0;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
}
#owners {
    margin:10px 0 50px 0;
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

}
#email-signin {
    display: none;
}
.owner {
    width: 30%;
    max-width: 200px;
    min-width: 150px;
    height: 200px;
    /* min-width: 200px; */
    display: flex;
    flex-direction: column;
    /* border: 1px solid black; */
    margin: 5px 5px 5px 5px;
    padding: 10px 20px 10px 20px;
    /* text-align: right; */
    background-color: #f3f1f1;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
}
.my-pets {
    width: 45%;
    max-width: 200px;
    min-width: 150px;
    height: 150px;
    /* min-width: 200px; */
    display: flex;
    flex-direction: column;
    /* border: 1px solid black; */
    margin: 5px 5px 5px 5px;
    padding: 10px 20px 10px 20px;
    /* text-align: right; */
    background-color: #f3f1f1;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
}
.owner-img {
    text-align: center;
}
.owner-info {
    padding: 5px 20px 5px 20px;
}
#pet {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60vh;
}

#ui {
    position: fixed;
    width: 100%;
    bottom: 30px;
    left: 0px;
    right:0px;
}
#url-field {
    font-size: 0.75em;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 300px;
}
#close-alert {
    position: absolute;
    width: 90%;
    margin: 0 auto 5px auto;
    background-color: rgb(241, 208, 91);
    border-radius: 7px;
    padding: 5px;
    text-align: center;
    display: none;
    z-index:100;
}
#owner-info {
    font-weight: bold;
}
#edit-owner-info {
    color: rgb(61, 61, 61);
}
section {
    display: flex;
    justify-content: center;
    align-items: center;
}