*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*:focus {
    border: none;
    outline: 0;
}
img {
    vertical-align: middle;
}

a img {
    border: none;
}
body{
    background-color: #000000;
    font-family: "Raleway", sans-serif;
}
.doors{
    padding: 40px 0;
    height: calc(100vh - 50px);
    display: flex;
    justify-content: space-evenly;
}
.door{
    border: 20px solid #cccccc;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    align-items:center;
    background-color: #111111;
    color: #FFFFFF;
}
.door h1{
    font-family: "Lobster", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    color: #FFFFFF;
}
.door .detail{
    text-align: center;
    height: 1px;
    overflow: hidden;
    transition: height 1s;
}
.door:hover .detail{
    height: 190px;
}
.door .detail .job{
    padding: 30px 0;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    line-height: 30px;
}
.door .detail .view-btn{
    display: inline-block;
    padding: 10px;
    background-color: cadetblue;
    font-weight: bold;
    color: black;
    text-decoration: none;
    border-radius: 10px;
}
.door .detail .view-btn:hover{
    background: greenyellow;
}
footer{
    border-top: 1px solid #444444;
    background-color: #000000;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: white;
}
video{
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover; /* Ensures video covers the screen */
    background: black;
}