/*Colour Pallete
    #25274D Dark blue
    #464866 Dark Grey
    #AAABB8 Light Grey
    #2E9CCA Light Blue
    #29648A Medium Blue
*/

html {
    font-family:  'Inter', sans-serif;
    color: white;
    font-size: 16px; /* This is the default size in HTML.*/

    background-color: #29648A;
}

body {
    font-family:  'Inter', sans-serif;
    color: white;
    font-size: 16px; /* This is the default size in HTML.*/
    background-color: #29648A;
}

a {
    font-family:  'Inter', sans-serif;
    color: white; 
    font-size: 16px;
}

a:hover {
    /*font-family: Arial, Helvetica, sans-serif;*/
    color: #25274D;
    font-size: 16px;
}

h1 {
    text-align: center;
    font-size: 60px;
    padding-top: 16px;
}

h2 {
    text-align: center;
}

p,
li {
    font-family:  'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}


#website_selfie {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 70%;
    box-align: center;
    width: 120px;
    height: 150px;
}

.topbar {
    overflow: hidden;
    background-color: #25274D;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

}
.topbar b {
    float:left;
    display:block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
.topbar a {
    float:left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.topbar a:hover {
    color: #29648A;
}

.main {
    margin-top: 48px;
}

.cvblock {
    background-color: #2E9CCA;
}

@media (max-width: 600px) {
  .container {
    flex-direction: column;
  }
}