* {
    padding: 0;
    margin: 0;
    font-family: 'Sofia Sans Condensed', sans-serif;
}

.navbar {
    width: 100%;
    height: 5rem;
    background-color: white;
    -webkit-box-shadow: 0 3px 3px rgba(0,0,0,.2);
    box-shadow: 0 6px 6px rgba(0,0,0,.2);
}

.navbar a {
    float: left;
    display: block;
    color: #000000;
    background-color: white;
    text-align: center;
    padding: 25px 16px;
    text-decoration: none;
    font-size: 1.5rem;
    
}

.navbar .loginButton{
  display: block;
  float: right;
  color: #000000;
  background-color: rgb(255, 255, 255);
  text-align: right;
  padding: 25px 16px;
  text-decoration: none;
  font-size: 1.5rem;  
}

.navbar img {
  float: left;
  padding-top: 5px;
  width: auto;
  height: 90%;
  

}

.navbar a:hover {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
  }

.navbar .Login{
    float: right;
    color: rgb(0, 0, 0);
}

.navbar .icon {
    display: none;
  }

@media all and (max-width:700px){
    /*.navbar a:not(:first-child) {
        display: none;
    }*/
    .navbar a.icon {
      display: block;
      float:right;
    }
}

@media screen and (max-width: 700px) {
    .navbar.responsive {position: relative;}
   /* .navbar.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .navbar.responsive a {
        float: none;
        display: block;
        text-align: right;
        -webkit-box-shadow: 0 3px 3px rgba(0,0,0,.2);
        box-shadow: 0 6px 6px rgba(0,0,0,.2);
    }*/

  }

@media screen and (max-width: 380px) {
  .navbar a{
    display: none;
  }

  .navbar .loginButton:hover{
    float: right;
    display: block;
    color: #ffffff;
    background-color: rgb(0, 0, 0);
    text-align: center;
    padding: 25px 16px;
    text-decoration: none;
    font-size: 1.5rem;  
  }
}

  .main{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .main-photo{
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    width: 80%;
    max-height: 85vh;
    border-radius: 25px;
    border: 1px solid black;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  .main-right{
    margin: auto;
    text-align: center;
    width: 80%;
  }

  .main a {
    padding: 5px;
    font-size: 2.5rem;
    text-decoration: none;
    color: #000000;
  }

  .Ris-Speak{
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    width: 50%;
  }
  .main .facebook :hover{
    text-decoration: none;
    color: #1778F2;
  }

  .main .twitter :hover{
    text-decoration: none;
    color: #1DA1F2;
  }

  .main .instagram :hover{
    color:#d6249f;
  }

  .main .gab :hover{
    text-decoration: none;
    color: #0bc03b;
  }

  .main .github :hover{
    text-decoration: none;
    color: #6e5494;
  }

  .main .linkedin :hover{
    text-decoration: none;
    color: #0A66C2;
  }

  @media all and (max-width:880px) {
    .main{
    display: grid;
    grid-template-columns: 1fr;
    }

    .main-photo{
        display: none;
    }
    
    .main-right{
        padding-top:10vh;
        margin: auto;
        text-align: center;
        width: 90%;
    }
  }