@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap');

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0px auto;
    font-family: 'Space Grotesk', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0px auto;
}

img {
    width: 100%;
}

.wrapper {
    width: 85%;
    max-width: 1000px;
    margin: 0px auto;
}

.menubar {
    padding: 32px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
    margin-right: 8px;
}

.hero {
    padding: 56px 0px;
}

.hero h1 {
    font-weight: normal;
    font-size: 50px;
}

.projectwrapper {
    margin-top: 40px;
    margin-bottom: 120px;
}

.projectbox {
    margin-bottom: 80px;
}

.projecttextbox {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 32px;
}

.projecttext  {
    max-width: 400px;
    width: 50%;
}

.projecttext h2 {
    font-size: 32px;
    margin-bottom: 12px;
    margin-top: 0px;
}

.projecttext p {
    font-size: 20px;
}

.projectimage {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #eee;
}

.projectlink {
    border: 1px solid #000;
    border-bottom: 2px solid #000;
    padding: 16px 24px;
    transition: background-color 0.2s, color 0.2s;
}

.projectlink:hover {
    background-color: #000;
    color: #fff;
}

#section-contact {
    background-color: #000;
    color: #fff;
    padding: 120px 0px;
    position: relative;
    z-index: 1;
}

.logobigbg {
    width: 500px;
    height: 500px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-image: url("img/opexlogo-white.svg");
    background-repeat: no-repeat;
    background-size: 450px;
    background-position: bottom -90px right -100px;
    opacity: 0.2;
}

.contactbutton {
    display: block;
    font-size: 40px;
    font-weight: normal;
    transition: padding-left 0.2s;
}

.contactbutton:hover {
    padding-left: 12px;
}

.footerlogo {
    font-size: 20px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
}

.footerlogo img {
    width: 40px;
    margin-right: 8px;
}

.socialbtn {
    opacity: 0.6;
    transition: opacity 0.2s;
}

.socialbtn:hover {
    opacity: 1;
}

.socialbtn img {
    width: 32px;
    margin: 0px 12px;
    display: block;
}

.socialcontainer {
    margin-top: 24px;
    display: flex;
    align-items: center;
}

.socialcontainer span {
    font-size: 14px;
    margin: 0px;
    font-weight: normal;
}

.bottombar {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 32px;
    font-size: 12px;
    border-top: 1px solid #333;
}

.bottombar a {
    padding: 8px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.bottombar a:hover {
    opacity: 1;
}

.textwrapper {
    margin-bottom: 100px;
}