*,
*:before,
*:after {
    margin: 0;
    padding: 0;
}

body {
    padding: 5px 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: radial-gradient(rgb(255, 255, 255), silver, rgb(255, 255, 255));
}

header {
    width: 90%;
    height: 15%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link {
    margin: 0px 5px;
    padding: 5px;
    text-decoration: none;
    color: white;
    text-shadow: 0px 0px 1px black;
    border-radius: 10px;
    background-color: rgb(143, 136, 136);
}
.nav-link:hover {
    color: black;
    background-color: rgba(255, 255, 255, 0.7);
    border-bottom: 2px double black;
    text-shadow: none;
}

h2 {
    margin-left: -20px;
}

ul {
    width: 80%;
    margin-top: 10px;
    padding: 5px 20px;
    box-shadow: 0px 0px 2px black;
    border-radius: 5px;
    background-color: rgba(255,255,255,0.85);
}

li {
    margin-bottom: 10px;
}

.roman {
    list-style: upper-roman;
}

.logo {
    width: 60px;
    padding: 2px;
    border: 4px double gray;
    border-radius: 20px;
}

main {
    width: 95%;
    height: 100%;
    min-height: 100vh;
    margin: 10px auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    background-image: url('./images/20231116_163626.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}

.home-wrapper {
    width: 80%;
    margin: auto;
    margin-top: 20%;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(240, 248, 255, 0.95);
}

.paints {
    width: 98%;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(240, 248, 255, 0.95);
}

.paint {
    width: 30%;
    height: 100px;
    margin: 10px ;
}

.wrapper {
    width: 100%;
    padding: 15px 0;
    display: flex;
}

.time-wrapper {
    margin-top: 60px;
    display: flex;
    flex-direction: column;

}

.time-btn {
    width: auto;
    min-width: 140px;
    margin: 5px;
    padding: 5px 0;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0);
    background-color: brown;
    border-radius: 5px;
    font-weight: 600;
}

.time-btn:hover {
    border: 1px solid black;
    background-color: rgb(224, 130, 30);
    color: black;
}

.plan-wrapper {
    width: 100%;
    height: 100%;
}
.plan {
    width: 80%;
    margin: auto;
    display: none;
}

.active {
    display: block;
}

.images {
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.busi-img {
    width: 200px;
    height: 100%;
    min-height: 140px;
    margin: auto;
    border: 1px solid black;
    border-radius: 10px;
    box-shadow: 0px 0px 10px white;
    transition: 200ms;
}

footer {
    width: 90%;
    height: 5%;
    text-align: center;
}

@media only screen and (max-width: 500px) {
    .nav-link {
        font-size: small;
    }
}