/* Roboto Regular */
@font-face {
    font-family: 'Roboto';
    src: url('../assets/fonts/roboto/static/Roboto-Regular.ttf') format('truetype');
    font-weight: 400; /* Regular */
    font-style: normal;
  }
  
  /* Roboto SemiBold */
  @font-face {
    font-family: 'Roboto';
    src: url('../assets/fonts/roboto/static/Roboto-SemiBold.ttf') format('truetype');
    font-weight: 600; /* SemiBold */
    font-style: normal;
  }

    /* Roboto SemiBold */
    @font-face {
        font-family: 'Roboto';
        src: url('../assets/fonts/roboto/static/Roboto-Light.ttf') format('truetype');
        font-weight: 100; /* Light */
        font-style: normal;
      }
* {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto';
    text-align: center;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #000000;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: space-between;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

nav {
    width: 100%;
}

.navbar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 1px dotted #E5E5E5;
    height: 120px;
}
.navbar ol {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.navbar #emoji {
    font-size: 18px;
    margin-bottom: 20px;
}
.navbar ol a,
.navbar #emoji a {
    text-decoration: none;
    color: #14131B;
    font-size: 14px;
    font-weight: 100;
}

.navbar ol a:hover {
    text-decoration: underline;
}

.content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.content #model {
    margin: 20px auto;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
}
p {
    font-size: 14px;
    font-weight: 100;
    color: #9D9D9D;
    margin-bottom: 16px;
}
h1 {
    font-size: 28px;
    font-weight: 500;
    color: #14131B;
    margin-bottom: 24px;
}


.social-links a {
    margin: 0 10px;
    text-decoration: underline;
    color: #14131B;
    font-size: 16px;
    font-weight: 100;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

@media screen and (min-width: 1024px) {
    p{
        font-size: 20px;
    }
    h1 {
        font-size: 32px;
    }
    #container {
        width: 80%;
    }
    .navbar {
        height: 100px;
        flex-direction: row;
        justify-content: space-between;
    }

    .navbar #emoji {
        margin-bottom: 0;
        margin-left: 2rem;
    }

    .navbar ol {
        margin-right: 2rem;
        width: 30%;
    }
    .content {
        border: 1px dotted #E5E5E5;
    }
}
