*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Poppins', sans-serif;
}

.main{
    width: 100%;
    height: 100vh;
    display: flex;
    text-align: center;
    position: relative;
}
.menu {
    width: 20%;
    background-color: #121227;
    display: flex;
    flex-direction: column;
}
#logo {
    color: white;
    font-size: 30px;
    letter-spacing: 4px;
    padding: 15px;
    background-color: #000;
}
.menu a{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
    display: list-item;
    padding: 40px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}
.home {
    display: inline-block;
    width: 75%;
    margin: auto;
    background-color: aquamarine;
    border: 1px solid black;
    position: absolute;
    top: -110%;
    right: 2rem;
}
.home.active {
    top: 40%;
}
.contact {
    display: inline-block;
    width: 75%;
    margin: auto;
    background-color: lightcoral;
    border: 1px solid black;
    position: absolute;
    top: -110%;
    right: 2rem;
}
.contact.active {
    top: 40%;
}
.info {
    display: inline-block;
    width: 75%;
    margin: auto;
    background-color: lightgoldenrodyellow;
    border: 1px solid black;
    position: absolute;
    top: -110%;
    right: 2rem;
}
.info.active {
    top: 40%;
}
.service {
    display: inline-block;
    width: 75%;
    margin: auto;
    background-color: lightseagreen;
    border: 1px solid black;
    position: absolute;
    top: -110%;
    right: 2rem;
}
.service.active {
    top: 40%;
}
.guide {
    display: inline-block;
    width: 75%;
    margin: auto;
    background-color: rgb(231, 66, 206);
    border: 1px solid black;
    position: absolute;
    top: -110%;
    right: 2rem;
}
.guide.active {
    top: 40%;
}
.welcome {
    text-align: center;
    padding: 10px;
    margin: auto;
    font-weight: bold;
    color: black;
    font-size: 2rem;
}
.welcome span{
    color: yellowgreen;
}
.welcome.hidden{
    visibility: hidden;
}

.btn {
    /* border: .2rem solid var(--black); */
    margin-top: 1rem;
    display: inline-block;
    padding: .8rem 3rem;
    font-size: 1.6rem;
    /* border-radius: .5rem; */
    color: white;
    cursor: pointer;
    background: none;
    
    }
    .btn:hover{
        background: white;
        color: black;
    }