:root {
    --dark: #04091e;
}

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

html {
    width: 100vw;
    scroll-behavior: smooth;
}

body {
    background-color: #f9f9ff;
    color: #f9f9ff;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.625em;
    position: relative;
}

/* background */

.background--img {
    position: relative;
}

.intro {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 640px;
    display: block;
    transform: translate(-50%, -50%);
    text-align: center;
}

.intro-site {
    top: 59%
}

.intro--title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1em;
    margin-top: 20px;
    margin-bottom: 20px;
}

.intro--description {
    color: #fff;
    font-size: 15px;
    font-weight: 350;
    line-height: 1.625em;
}

.btn--goto-about {
    height: 42px;
    width: 155px;
    margin: 20px auto;
    background-color: red;
    line-height: 42px;
    border-radius: 17px;
    border: none;
    color: #fff;
    display: inline-block;
    font-weight: 500;
    position: relative;
    text-align: center;
    transition: all .3s ease 0s;
    cursor: pointer;
    text-decoration: none;
}

/* website content */
.about, .work, .projects {
    width: 100%;
    height: 700px;
}

.container {
    display: flex;
    flex-direction: column;
    width: 85%;
    height: 100%;
}

.contact-container {
    flex-direction: row;
    flex-wrap: wrap;

}

@media (min-width: 768px) {
    .container {
        width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 100%;
        width: 73%;
    }
}
