*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo img{
    width: 100px;
}
.header {
    background-color: rgb(59, 59, 59);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}
nav ul{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-right: 70px;
    cursor: pointer;
}
nav ul li{
    list-style: none;
    color: white;
    text-transform: capitalize;
    justify-content: center;
    font-weight: bold;
    align-items: center;
}
.main{
    background-image: url(applo.png);
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    
}
.main h3{
    padding-top: 70px;
    font-size: 36px;
    text-align: center;
    color: white;
}
.main h1{
    padding-top: 30px;
    text-align: center;
    color: white;
    font-size: 60px;
    text-transform: capitalize;
    font-weight: 900;
}

.btn {
    display: flex;
    align-items: center;
    border: none;
}

.btn button {
    padding: 20px;
    border: none;
    border-radius: 20px;
    background-color: rgb(245, 177, 52);
    color: rgb(45, 1, 45);
    margin-top: 30px;
    font-weight: bold;
    cursor: pointer;
}
.btn button:hover{
    background-color: rgb(255, 199, 95);
    color: rgb(45, 1, 45);
    transition: all;
}

.prof {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    gap: 60px;
    margin-left: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;
    font-size: 15px;
    font-weight: 600;
}
.section {
    justify-self: center;
    justify-content: space-between;
    align-items: center;
}
  
.btn1 {
    display: flex;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    border: none;
}
.btn1 button {
    align-items: center;
    justify-content: center;
    background-color: rgb(97, 7, 97);
    padding: 20px;
    color: white;
    text-transform: capitalize;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
}
.btn1 button:hover{
    background-color: rgb(185, 10, 150);
    color:white;
    border: 1px solid rgb(97, 7, 97);
    transition: all;
}
.content {
    display: flex;
    justify-content: center;
    font-family: system-ui, -apple-system, 
    BlinkMacSystemFont, 'Segoe UI', Roboto, 
    Oxygen, Ubuntu, Cantarell, 'Open Sans',
   'Helvetica Neue', sans-serif;
    align-items: center;
    flex-direction: row-reverse;
}
.col1 {
    margin-top: 40px;
    align-items: center;
    justify-content: center;
}
.col1 p {
    margin-top: 40px;
    font-size: 18px;
}
.col2 img{
    width: 100%;  
}

btn2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn2 button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    border: none;
    background-color: rgb(97, 7, 97);
    text-transform: capitalize;
    border-radius: 20px;
    padding: 20px;
    color: white;
    cursor: pointer;
}
.btn2 button:hover{
    background-color: rgb(185, 10, 150);
    color: white;
    transition: all;
}

.images {
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: row;
}
.images img{
    align-items: center;
    flex-direction: row;
    width: 500px;

}


