html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    float: left;
    position: relative;
    font-family: "Open Sans", sans-serif;
    font-size: 1vmax;
    background-color: rgb(147, 147, 147);
    overflow: hidden;
    max-height: 100%;
    max-width: 100%;
}

header {
    width: 100%;
    height: 15%;
    background-color: rgb(185, 234, 93);
    /*
  outline-color: chartreuse;
  outline-style: solid;
  */
    border-bottom-style: solid;
    float: left;
    position: relative;
}

content {
    min-height: 75%;
    height: 75%;
    max-height: 75%;
    width: 60%;
    padding-left: 20%;
    padding-right: 20%;
    float: left;
    position: relative;
}

footer {
    width: 100%;
    height: 10%;
    float: left;
    position: relative;
    padding-top: 1%;
    background-color: rgb(185, 234, 93);
}

.logoimg {
    width: auto;
    height: 100%;
}

.right {
    padding-left:55%;
}

.logo {
    float: left;
    width: auto;
    height: 100%;
    max-height: 100%;
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.centered {
    float: left;
    margin-left: 50%;
    transform: translate(-50%, 0);
}

.divider {
    display: flex;
    float: left;
    width: 1px;
    height: 1vmax;
    margin-left: 1vmax;
    margin-right: 1vmax;
    background: black;
}

.footerlinks {
    margin-left: 50%;
    transform: translate(-50%);
    float: left;
}

.footerlink {
    float: left;
}


/* Style the tab */

.tab {
    overflow-x: hidden;
    overflow-y: auto;
    height: 10%;
    min-height: 10%;
    max-height: 10%;
    border: 1px solid #ccc;
    background-color: rgb(132, 169, 66);
}


/* Style the buttons that are used to open the tab content */

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    height: 100%;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 1.25vmax;
}


/* Change background color of buttons on hover */

.tab button:hover {
    background-color: rgb(122, 159, 56);
}


/* Create an active/current tablink class */

.tab button.active {
    background-color: rgb(112, 149, 46);
}


/* Style the tab content */

.tabcontent {
    display: none;
    padding-left: 10%;
    padding-right: 10%;
    border: 1px solid #D4D4D4;
    border-top: none;
    animation: fadeEffect 0.5s;
    background-color: #D4D4D4;
    max-height: 90%;
    height: 90%;
    min-height: 90%;
    overflow-y: auto;
}

#contact {
    background: url(bkg_1.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position-y: center;
    background-color: #D4D4D4;
}

#info {
    background: url(bkg_2.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position-y: center;
    background-color: #D4D4D4;
}

.textCentered {
    text-align: center;
}


/* Go from zero to full opacity */

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

footer a {
    color: black;
    text-decoration-line: none;
}

.profile {
    width: 100%;
    padding-top: 5%;
    height: max-content;
}

.profilePictureContainer {
    width: 33%;
    float: left;
    overflow: hidden;
}

.profilePicture {
    max-width: 30%;
    height: auto;
}

.profileInfo {
    width: 66%;
    float: left;
}

li {
    padding-top: 1%;
}