@import url("../css/animations.css");
@import url("../css/projects.css");

/*Use the Nasalization font*/
@font-face {
    font-family: 'nasalization';
    src: url("../font/font.otf") format("opentype");
}

/*Style of entire tab element*/
.tab
{
    overflow: hidden;
    border: none;
    background-color: #e03634;
    border-radius: 25px;
    text-align: left;
    align-content: left;
    align-items: left;
    z-index: 1;
}

/*The style of each button inside the tab element*/
.tab button
{
    display: table;
    font-family: 'nasalization';
    font-style: normal;
    height: 20%;
    width: 100%;
    background-color: #e03634;
    color: white;
    float: none;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;

    align-self: left;

    border-radius: 25px;
}

/*When button is hovered over, background color should change*/
.tab button:hover
{
    background-color: #C82D27;
}

/*Do the same when it is clicked on*/
.tab button:active
{
    background-color: #C82D27;
}

/*Style the content of each tab*/
.tabcontent
{
    font-family: 'nasalization';
    font-style: normal;
    font-weight: 400;
    display: flex;
    margin-top: 20px;
    border: none;
    background-color: #e03634;;
    color: white;
    border-radius: 25px;
    text-align: center;

    padding-bottom: calc(1% + 1%);
    padding-left: 2%;
    padding-top: 2%;
    padding-right: 2%;
    margin-left: 5%;
    margin-right: 5%;

    min-width: 20%;
    max-width: 80%;

    min-height: 20%;
    max-height: 30%;
}


.profile_photo
{
    max-width: 35%;
    max-height: 35%;
    border-radius: 25px;
    float: left;
    src: url("../photos/index.png");
}

.profile_description
{
    float: left;
    text-align: left;
    align-content: left;
    margin-left: 25px;
}

page_title
{
    font-family: 'nasalization';
    font-style: normal;
    font-weight: bold;
    font-size: 20pt;
    float: none;
}

li
{
    display: list-item;
    float: none;
    text-align: left;
}

ul
{
    float: left;
}

body
{
    background-color: #e03634;
    display: flex;
}