/* * {
    margin: 0px;
    padding: 0px;
}

body {
    background-image: url('background_siddhigiri.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.outer {
    text-align: center;
    width: 100%;
}

.main-content {
    min-width: 400px;
    margin-top: 200px;
    margin-left: 320px;
    margin-right: 320px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.6);
}

button {
    font-size: 25px;
    width: 150px;
    padding-top: 5px;
    padding-bottom: 5px;
    border: none;
    border-radius: 7px;
}

.heading {
    padding-top: 30px;
    text-align: center;
    font-size: 40px;
    font-weight: bolder;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 50px;
}

.container {
    display: flex;
    margin-bottom: 80px;
}

.content {
    width: 50%;
}

.content1 {
    text-align: right;
    margin-right: 20px;
}

.content2 {
    text-align: left;
    margin-left: 20px;
}

.foot {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 20px;
}

.admin {
    background-color: #9F70FD;
}

.employee {
    background-color: #FDBF60;
}
.guard
{
    background-color: rgb(234, 144, 159);
}

.admin:hover {
    cursor: pointer;
    transform: scale(1.2);
    transition-duration: 200ms;
}

.employee:hover {
    cursor: pointer;
    transform: scale(1.2);
    transition-duration: 200ms;
}
.guard:hover {
    cursor: pointer;
    transform: scale(1.2);
    transition-duration: 200ms;
}
.name1
{
    word-wrap: break-word;
}

@media screen and (max-width:700px) {
    body {
        background-image: none;
    }

    .main-content {
        width: 650px;
        margin-top: 0px;
        margin-left: 0px;
        margin-right: 0px;
        border-radius: 30px;
        background-color: rgba(255, 255, 255, 0.6);
    }
    .container {
        display: block;
        margin-bottom: 80px;
    }
    .content
    {
        text-align: center;
    }
} */


* {
    margin: 0px;
    padding: 0px;
}

body {
    background-image: url("background_siddhigiri.png");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    height: 90vh;
}

.logo {
    display: none;
}

.main-content {
    border: 1px solid black;
    width: 500px;
    padding: 10px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 150px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.6);
}

.heading {
    padding-top: 30px;
    text-align: center;
    font-size: 40px;
    font-weight: bolder;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 40px;
}

.container {
    display: flex;
    text-align: center;
    justify-content: space-evenly;
    margin-top: 20px;
    margin-bottom: 10px;
}
.container1
{
    text-align: center;
}

.employee, .admin, .guard {
    width: 200px;
    font-size: 20px;
    padding: 10px;
    margin: 13px;
    border-radius: 10px;
    font-family: 'Times New Roman', Times, serif;
    color: white;
    border: none;
    font-weight: bold;
}

.employee {
    background-color: rgb(87, 87, 228);
}

.admin {
    background-color: rgb(231, 77, 77);
}

.guard {
    background-color: rgb(76, 220, 76);
}
.employee:hover, .guard:hover, .admin:hover {
    cursor: pointer;
    transform: scale(1.2);
    transition-duration: 200ms;
}
.foot {
    margin: 20px;
    text-align: center;
    font-weight: bold;
}

@media screen and (max-width:500px) {
    body {
        background-image: none;
    }
    .main-content {
        border: 1px solid black;
        margin: 20px;
        margin-top: 30px;
        height: 70vh;
        border-radius: 10px;
        background-color: rgb(248, 246, 246);
        width: 90%;
    }

    .logo {
        display: block;
        text-align: center;
        margin: 30px;
    }

    .heading {
        text-align: center;
        font-size: 25px;
        font-weight: bold;
        padding-top: 0px;
        margin-bottom: 0px;
    }

    .container {
        display: block;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 0px;
    }
}