/*Font*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    /* colors */
    --primary: #e87528;
    --secondary: #fdab54;
    --accent: #eec338;
    --black: #050315;
    --white: #fbfbfe;

    /* Font sizes */
    --ff: "Inter", sans-serif;
    --size1: bold 4rem var(--ff);
    --size2: bold 3rem var(--ff);
    --size3: bold 2rem var(--ff);
    --p: 1rem var(--ff);
    --small: 0.75rem var(--ff);

}

h1,
h2,
h3,
h4,
h5,
h6,
p,
.small {
    margin: 0;
}

h1 {
    font: var(--size1)
}

h2 {
    font: var(--size2);
}

.small {
    font: var(--small);
}

html {
    font: var(--p);
    font-size: 16px;
    color: var(--white);
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
}

a {
    text-decoration: none;
    color: var(--white);
}

a:hover {
    color: var(--accent);
}

nav {
    background-color: var(--black);
    display: flex;
    align-items: center;
    padding: 0rem 2rem;
}

ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

.button {
    padding: 1rem;
    background-color: var(--primary);
    border-radius: 1rem;
    text-align: center;
    margin-top: 4rem;
    display: inline-block;
}

.section {
    background-image: url(./hero.jpg);
    background-repeat: none;
    background-size: cover;
    background-position: center;
    height: 60dvh;
    padding: 8rem 8rem 0rem 8rem;
}

footer {
    background-color: var(--black);
    display: flex;
    gap: 4rem;
    padding: 8rem;
}

.about,
.info,
.client {
    flex: 1;
}

.about {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about img {
    border-radius: 0.5rem;
    width: 100%;
}

.info {
    display: flex;
    flex-direction: column;
}

.info a {
    text-decoration: underline;
}

.links{
    display: flex;
    flex-direction: column;
}

.clientsection {
    display: flex;
    flex-direction: column;
}

.client {
    display: flex;
    margin-bottom: 2rem;
}

.client img {
    width: auto;
    height: 80px;
}

.clienttext {
    display: flex;
    flex-direction: column;
    object-fit: contain;
}