

nav {
    display: flex;
    justify-content: center;
    background-color: white;
    border-color: indigo;
}

nav a {
    display: inline-block;
    text-align: center;
    padding: 14px 30px;
    text-decoration: none;
    color: grey;
    /* border-bottom: 3px solid gray; */
}

nav a:active {
    color: indigo;
}

nav a[tabindex]:focus {
    color: indigo;
    outline: none;
}

body {
    border-top: 3px solid indigo;
}

.circle-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
}

.circle-image img {
    width: 100%;
    height: 122%;
  }

.container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
  }

.one-third {
    flex: 1;
    background-color: rgb(111, 239, 215);
    padding: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid indigo;
  }

  span {
    font-family:Brush Script MT, Brush Script Std, cursive;
    font-size: 50pt;
}

.two-thirds {
    flex: 2;
    /* background-color: rgb(233, 139, 217); */
    background-color: whitesmoke;
    padding: 20px;
    border: 2px solid indigo;
  }



  .center {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid indigo; 
  
  }

    .footer {
        position: relative;
        height: 50px;
        width: 100%;
        background-color: whitesmoke;
    }

    p.copyright {
        position: absolute;
        width: 100%;
        color: black;
        line-height: 40px;
        font-size: 0.7em;
        text-align: center;
        bottom:0;
    }
  
    
@media (max-width: 1500px) {

    nav {
      display: flex;
      justify-content: center;
      background-color: white;
      border-color: indigo;
    }

    nav a {
      display: inline-block;
      text-align: center;
      padding: 14px 30px;
      text-decoration: none;
      color: grey;
    }

    nav a:active {
      color: indigo;
    }

    nav a[tabindex]:focus {
      color: indigo;
      outline: none;
    }

    body {
      border-top: 3px solid indigo;
    }

    .circle-image {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      overflow: hidden;
      margin: auto;
    }

    .circle-image img {
      width: 100%;
      height: 122%;
    }

    .container {
      display: flex;
      flex-direction: row;
      width: 100%;
      height: 100vh;
    }

    .one-third {
      flex: 1;
      background-color: rgb(111, 239, 215);
      padding: 20px;
      justify-content: center;
      align-items: center;
      text-align: center;
      border: 2px solid indigo;
    }

    span {
      font-family:Brush Script MT, Brush Script Std, cursive;
      font-size: 50pt;
    }

    .two-thirds {
      flex: 2;
      background-color: whitesmoke;
      padding: 20px;
      border: 2px solid indigo;
    }



    .center {
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 3px solid indigo; 

    }

    .footer {
          position: relative;
          height: 50px;
          width: 100%;
          background-color: whitesmoke;
    }

    p.copyright {
          position: absolute;
          width: 100%;
          color: black;
          line-height: 40px;
          font-size: 0.7em;
          text-align: center;
          bottom:0;
    }

  }