/*Website structurals*/
html {
    font-size: 62.5%; /*this make the default font size 10px*/
}
body {
    background-color: #0f0f0f;
    color: #ffffff;
}
.wrapper-main {border: solid white 5px;
    width: 75%;
    margin: auto;
    justify-content: center;
}
.white-strip {
    background-color: #ffffff;
    width: 100%;
    height: 5px;
    margin: 10px auto;
}
/* Holding page*/
.holding-slide {
    width: 75%;
    margin: auto;
    text-align: center;
    justify-content: center;
}
.holding-slide h2 {
    font-size: 5rem;
    margin: 10px;
}
.holding-slide img {
    height: 45vh;
}
.holding-slide p {
    font-size: 2.5rem;
    margin: 10px;
}
.holding-slide button {
    font-size: 2rem;
    font-style: bold;
    margin: 10px;
    padding: 10px;
    background-color: #5e2b62;
    border-color: #5e2b62;
    border-radius: 5px;
}
/*Header section*/
.header-container {
    display: flex;
    margin: 10px auto;
    justify-content: center;
}
.header-container img {
    height: 15vh;
    margin: 10px;
}
.header-container h1 {
    font-size: 6.5rem;
    font-style: bold;
    align-content: center;
}
nav {
    display: flex;
    margin: auto;
    justify-content: center;
    font-size: 2.5rem;
    cursor: pointer;
}
nav a {
    margin: 5px;
    font-style: bold;
}
/*Intro section*/
.intro-container {
    margin: auto;
    justify-content: center;
    text-align: center;
}

.intro-container h2 {
    font-size: 2.5rem;
    font-style: bold;
}
/*muzodo integration*/
.muzodo-integration {
    border: solid 5px green;
}
/*footer*/
.footer-container {border: solid 5px red;
    display: flex;
    margin: auto;
    justify-content: center;
    text-align: center;
}

/*Mobile website CSS*/

@media (max-width: 600px) {

    .wrapper-main {
    width: 90%;
    margin: auto;
    justify-content: center;
    }

    .header-container img {
        height: 10vh;
    }

    .header-container h1 {
        font-size: 3rem;
    }

    .holding-slide h2 {
        font-size: 2.5rem;
    }

    nav {
        font-size: 1.5rem;
    }
}
