body, html {
    height: 100%;
    margin: 0;
    font-family: 'Kantumruy Pro', sans-serif;
}

/* The navigation bar */
.navbar {
    overflow: hidden;
    background-color: white;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
  }
  
  /* Links inside the navbar */
  .navbar a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* Change background on mouse-over */
  .navbar a:hover {
    background: #ddd;
    color: black;
  }

.bg {
    margin-top: 30px;
    /* The image used */
    background-image: url("https://imagedelivery.net/d-52onWn5g5i2cEgNkzX3g/7e4ce5f2-54f8-4d68-71e3-b9f8f5ddab00/public");
    
    /* Full height */
    height: 100%;
    
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.inner {
    display: table;
    margin: 0 auto;
}

.outer {
  width:100%;
  display: flex;
  justify-content: center;
}

.model-name {
    text-align: center; 
    color: white; 
    font-size:8vw; 
    text-shadow: 2px 2px black;
}

.social-link {
    text-align: center;
    display: block;
    color: white; 
    font-weight: 700; 
    font-size:4vw; 
    text-shadow: 2px 2px black;
    margin-top: 32px;
    margin-bottom: 32px;
}

/* Container holding the image and the text */
.container {
    position: relative;
    text-align: center;
    
    display: block;
    margin: auto;
    width: 50%;

    color: white;
    font-size:8vw; 
    font-weight: 700;
    text-shadow: 2px 2px black;
  }
  
  /* Centered text */
  .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }