*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    background-color: rgba(2,0,36,1);
}
nav{
   display: flex;
   align-items: center;
   justify-content: space-between; 
   width: 100%;
   height: 100%;
   padding: 20px 70px;
}
nav span {
    display: flex;
    align-items: center;
    font-size: 22px;
}
nav img{
    width: 40px;
    height: 40px;
    font-size: 50px;
}
nav ul{
    width: 43%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav ul li{
    font-size: 20px;
    list-style: none;
}
nav button{
    font-size: 20px;
    padding: 5px 30px;
    border: 2px solid white;
}
.home{
    height: 100vh;
    display: flex;
}
.text{
    padding: 72px;
    width: 50%;
}
.text span{
    display: flex;
}
h1{
    font-size: 80px;
    font-weight: 400;
}
p{
    margin-top: 20px;
    font-size: 20px;
    padding-bottom: 30px;
}
h2{
    display: flex;
    align-items: center;
}
.text span {
    display: flex;
    justify-content: space-between;
}
.text button{
    font-size: 20px;
    padding: 10px 30px;
    border: 2px solid white;
}
.img{
    padding: 72px;
    width: 50%;
    /* height: 100%; */
}
.img img{
    width: 100%;
    /* height: 100%; */
}
.res{
    display: none;
}
.res-lap{
    display: block;
}
@media (max-width:768px) {
    nav{
        padding: 20px;
     }
    nav ul{
        display: none;
    }
    .home{
        padding: 0px;
        padding-top: 15px;
        height: auto;
        flex-direction: column-reverse;
    }
    .text{
        width: 100%;
        padding: 20px;
    }
    .img{
        padding: 0px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .img img{
        width: 90%;
        height: 80%;
    }
    .text button{
        font-size: 25px;
        padding: 10px 3px;
    }
    .res{
        display: block;
        font-size: 32px;
        font-weight: 400;
    }
    .res-lap{
        display: none;
    }
}
@media (max-width : 360px) {
    .text span {
        flex-direction: column;
    }
}