:root {
    --ff-main: "Archivo Narrow", sans-serif;
    --ff-accent: "Over the Rainbow", cursive;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

ul,
ol {
    padding: 0;
}

li {
    list-style-type: none;
}

a {
    color: #ffffff;
}

.header {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;    
    margin: 0;
    padding: 1rem 1rem;
    position: fixed;
}

.logo {
    width: 60px;
    height: 85px;
    margin-top: 2rem;
    margin-right: 1.5rem;    
}

.footer {
    width: 100%;
    height: auto;
    padding-top: 2rem;
    background-color: black;
    margin: 0;
}

.contact-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background-color: #000000;
    padding-inline: 2rem;
}

.footer-container-left {
    font-family: var(--ff-main);
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer-container-right {
    font-family: var(--ff-main);
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;   
}

.footer-title {
    font-family: var(--ff-main);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.design-text {
    text-align: center;
    font-family: var(--ff-main);
    color: #f65a00;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 2rem;
}