*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

section {
    height: 100vh;
    position: sticky;
    display: flex;
    justify-content: center;
    align-items: center;
}

.one {
    background:rgb(46, 146, 228);
}

.two {
    background: rgb(37, 37, 48);
}

.three {
    background: black;
    /*background-image: url(images/image-1.jpg);*/
}

.four {
    background: rgb(213, 223, 156);
}

.five {
    background-image: url(images/projects.jpg);
    background-position: center;
}
.container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 95vh;
    padding: 3rem calc((100vw - 1300px) / 2);
}

.column-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: rgb(0, 0, 0);
    padding: 0rem 2rem;
}

column-left h1{
    margin-bottom: 1rem;
    font-size: 2rem;
    font-style: italic;
}
button{
    padding: 1rem 3rem;
    margin-top: 1rem;
    font-size: 1rem;
    border: none;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    cursor: pointer;
    border-radius: 50px;
}

.text{
    color: cornsilk;
    font-size: small;
}


.right-column{
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 2rem;
}

.column-left p{
    margin-bottom: 2rem;
    font-size: 4rem;
    line-height: 1.1;
}

img{
    width: 100%;
    height: auto;
}

h1{
	font-family:serif;
	margin:15px;
}
p{
	font-family:serif;
	justify-content:left;
	align-content:left;
	text-align:left;
	margin:15px;
}

@media screen and (max-width:768px) {
    .container {
        grid-template-columns: 1fr;

    }
}