* {
    margin: 0;
    padding: 0;
   
    
}

main {
    width: 100%;
}

body {
    font-family: 'Roboto Mono';
    background: bisque;
    margin: 0;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
}

nav {
    border: 1px solid black;
    background-color: #765b3c;
    overflow: auto;
    padding: 2px;
}

nav .logo p {
    position: relative;
    top: -0px;
    margin-top: 40px;
    left: 60px;
    font-size: 30px;
    font-weight: bold;
    float: left;
    padding-left: 20px;
    background: linear-gradient(bisque, peru);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

nav ul {
    float: right;
    line-height: 140px;
}

nav li {
    display: inline-block;
    list-style: none;
}

nav li a {
    font-size: 18px;
    color: bisque;
    padding: 0 30px;
    text-decoration: none;
    line-height: 10px;
}


nav li a:hover {
    color: black;
    transition: all 0.4s ease 0s;
}

h1 {
    text-align: center;
    margin-top: 30px;
    color: peru;
    text-shadow: 1px 0 1px black;
}

h2 {
    margin-top: 70px;
    margin-left: 100px;
}

.pe-img {
    max-width: 50%;
    margin-top: 30px;
    margin-left: 300px;
    border: 4px solid black;
    border-radius: 10px;
}

@media only screen  and (max-width: 930px) {
    .pe-img {
        max-width: 70%;
        margin-top: 30px;
        margin-left: 15%;
        border: 4px solid black;
        border-radius: 10px;
        
    }
}
    
.text {
    max-width: 80%;
    margin-top: 30px;
    margin-left: 100px;
    padding: 8px;
    font-size: 16px;
    font-weight: bold;
}

/*.second-text {
    max-width: 80%;
    position: relative;
    top: 30px ;
    clear: right;
    margin-left: 100px;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
} */

@media screen and (max-width: 930px){
    .text, .second-text {
    max-width: 80%;
    margin-top: 10px;
    margin-left: 40px;
    padding: 8px;
    font-size: 16px;
    font-weight: bold;
    }
}

.container {
    display: flex; 
    max-width: 100%;
    
}

@media screen and (max-width: 930px){
    .container {
        max-width: 100%;
        display: block;
        float: left;
        margin-left: 2%;
    }
}

.item {
    max-width: 40%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    border: 5px solid black;
    border-radius: 40px;
}

@media screen and (max-width: 930px){
    .item {
        max-width: 60%;
        margin-left: 15%;

    }
}

.btn {
    position: relative;
    left: 45%;
    margin: 5px;
    padding: 7px;
    background-color: #f3d3ae;
    border-radius: 5px;
}

.sim-pic {
    width: 50%;
    border-radius: 10px;
}

.card {
    width: 400px;
    padding: 10px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-around;
    text-align: center;
    color: #2b2839;
    border-bottom: 5px solid #765b3c ;
    border-radius: 10px;
    background: #f3d3ae;
    box-shadow: 3px 5px 4px black;
}

.card-title{
    padding-top: 40px;
}

.guide {
    margin-top: 5px;
}

.contact-text {
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    font-weight: bold;
    
}

i {
    position: relative;
    top: 20px;
}