* {
    padding: 0;
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.intro {
    height: 100vh;
    width: 100%;
    background-image: url(../img/view-warehouse-goods-stock-background-d-rendering-warehouse-goods-stock-background-d-rendering-121207741.jpeg);
    background-size: cover;
    background-position: center;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 45px;
    padding-left: 8%;
    padding-right: 8%;
}

.logo {
    color: white;
    font-size: 35px;
    letter-spacing: 1px;
    cursor: pointer;
}


nav ul li {
    list-style-type: none;
    display: inline-block;
    padding: 10px 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}

nav ul li a:hover {
    color: #f9004d;
    transition: .4s;
}



.content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
}

h1 {
    color: white;
    margin: 20px 0px 20px;
    font-size: 75px;
}

h3 {
    color: white;
    font-size: 25px;
    margin-bottom: 50px;
}


.about {
    width: 100%;
    padding: 100px 0px;
    background-color: #191919;
}



.about-text {
    width: 95%;
    margin: 20px;
}

.main {
    max-width: 90%;
    margin: 0 auto;
    justify-content: space-around;
}

.about-text h2 {
    color: white;
    font-size: 75px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.about-text div {
    color: #fcfc;
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 45px;
    text-align: justify;
}

.product-text{
    width: 95%;
    margin: 20px;
}

.product-text h2 {
    color: white;
    font-size: 75px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.product-text div {
    color: rgba(181, 54, 143, 0.8);
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 45px;
    text-align: justify;
}


button {
    background-color: #f9004d;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: .4s;
}

button:hover {
    background-color: transparent;
    border: 2px solid #f9004d;
    cursor: pointer;
}

.service {
    background: #101010;
    width: 100%;
    padding: 00px 0px;
}


.title h2 {
    color: white;
    font-size: 75px;
    width: 1130px;
    margin: 0px;
    text-align: center;
}

h5 {
    color: white;
    font-size: 23px;
    margin-bottom: 15px;
}

.contact-us-text{
    width: 95%;
    margin: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr auto;
    grid-gap: 30px;
}

.contact-us-string{
    grid-row: 1/2;
    grid-column: 1/5;
    color: white;
    font-size: 75px;
    
}

.preformatted {
    color: white;
    font-family: monospace;
    white-space: pre;

}

.contact-us-main {
    max-width: 90%;
    margin: 0 auto;
    justify-content: space-around;       
}




