body {
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: url(1.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;    
    background-size: cover;
    background-position: top;
    font-family: 'Poppins', sans-serif;
    opacity: 1;
}
.logo {
    width: 100px;
    height: 100px;
}
header {
    position: relative;
    top: 0;
    width: 100%;
    padding-bottom: 5px ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
}
header.logo {
    align-items: left;
}
header .navigation a {
    color: rgb(245, 78, 18);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 1px 2px;
    border-radius: 50px;
    margin-right: 50px;
}
header .navigation a:hover {
    background: rgb(105, 18, 18);
    transition: 0.5s;
}
.content {
    max-width: 600px;
    margin: 20px 70px ;
}
.content .info h2 {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 40px;
    padding-bottom: 10px;
    font-weight: 600;
}
.content .info h2 span {
    color: rgb(245, 78, 18);
    font-size: 35px;
    font-weight: 600;
}
.content .info p {
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
}