@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;400&family=Merriweather:wght@300&display=swap");
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

:root {
    --primary: #933ded;
    --dark: #232323;
    --pure: #fff;
    --smoke: whitesmoke;
    --dark-gray: #999;
}

body {
    font-family: "Lato", sans-serif;
    background: var(--dark);
    color: var(--pure);
}

.container {
    width: 1152px;
    max-width: 90%;
    margin: 0 auto;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    border-radius: 50%;
    margin: 10px;
    height: 100px;
    width: 100px;
}

.nav-wrapper ul.nav-list {
    list-style-type: none;
    display: flex;
}

.nav-wrapper ul.nav-list {
    color: var(--pure);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-wrapper ul.nav-list li {
    margin-left: 30px;
    padding: 20px 0;
}

ul.nav-list li a {
    text-decoration: none;
    color: yellow;
    position: relative;
}

ul.nav-list li a:hover {
    font-size: 20px;
    border-bottom: 1px solid red;
    transition: all 0.3s;
}

a:active,
a:focus {
    font-size: 20px;
    border-bottom: 1px solid red;
    transition: all 0.3s;
    background-color: transparent;
}

main,
.addr {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    margin: 20px;
    align-items: center;
    font-size: larger;
}

#contact {
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 10px;
    font-size: larger;
}

strong {
    color: #933ded;
}