html {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

img {
    user-select: none;
}

a {
    text-decoration: none;
}

a>*:not(.arrow) {
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration 0.1s ease;
}

a:hover>*:not(.arrow) {
    text-decoration-color: inherit;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}

.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;

    padding-left: 20px;
    width: 100%
}

.navbar>a {
    font-size: 20px;
    margin-right: 20px;
    color: #000000;
}

.gap {
    flex-grow: 1;
}

.content {
    flex-grow: 1;
}

.width-limited {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    padding: 30px;
    background-color: #111111;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #f0f0f0
}

.footer .backtotop {
    font-size: 22px;
    margin-right: 40px;
    cursor: pointer;
}

@media (max-width: 600px) {
    .navbar>a>h1 {
        font-size: 32px;
    }

    .footer .backtotop {
        font-size: 17px;
    }

    .footer h1 {
        font-size: 22px;
    }
}

.landing {
    display: flex;
    flex-direction: row;

    margin-top: 40px;
    padding-left: 40px;
}

.landing-text {
    flex-grow: 1;
    margin-top: auto;
    margin-bottom: auto;
}

.landing-text>h1 {
    font-size: 3em;
    margin-top: 0;
    margin-bottom: 1vh;
}

.landing-text>h3 {
    font-size: 1.3em;
    font-weight: normal;
}

@media (max-width: 600px) {
    .landing-text>h1 {
        font-size: 2em;
    }

    .landing-text>h3 {
        font-size: 1em;
    }
}

@media (min-width: 1200px) {
    .landing-text>h1 {
        font-size: 50px;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .landing-text>h3 {
        font-size: 30px;
        font-weight: normal;
    }
}

.landing>img {
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    width: 30vw;
    height: auto;
    object-fit: contain;
    align-self: flex-end;
}

.section1,
.section2 {
    background-color: #111111;
    color: #f0f0f0;
    padding-top: 40px;
    padding-bottom: 40px;
}

.section1>*,
.section2>* {
    padding-left: 40px;
    padding-right: 40px;
}

.section2 {
    background-color: #222222;
}

.calltoaction {
	color: #f0f0f0;
    padding-top: 70px;
    padding-bottom: 70px;

    font-size: 2vh;
    background-color: #333333;
    display: flex;
}

.calltoaction>div {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-grow: 1;
}

.calltoaction a {
    background-color: inherit;
    color: #000000;
    background-color: #f0f0f0;
    padding: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin: 10px;
}

.calltoaction .arrow {
    margin-left: 10px;
    font-size: 48px;
}

@media (min-width: 1200px) {

    .section1 h1,
    .section2 h1 {
        font-size: 45px;
    }

    .section1 p,
    .section2 p {
        font-size: 20px;
    }

    .calltoaction {
        font-size: 30px;
    }
}

.image-footer>img {
    width: 100%;
    display: block;
}

.contact,
.about {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 4vw;
    padding-top: 5%;
    padding-left: 40px;
    padding-right: 40px;
}

.contact div,
.about div {
    flex-grow: 1;
    margin-right: 40px;
}

.contact img,
.about img {
    max-width: 30vw;
    border: 0.7vw solid #111111;
}

.contact .email,
.about .email {
    font-weight: 600;
}

@media (min-width: 1200px) {

    .contact img,
    .about img {
        border: 10px solid #111111;
        max-width: 600px;
    }
}

@media (min-width: 600px) {

    .contact {
        font-size: 25px;
    }

    .about {
        font-size: 20px;
    }
}
