
body{
    margin: 0;
}
a{
    text-decoration: none;
}
.content{
    /* margin-top:8.5vh; */
    height: 99vh;
    margin-left: 12.5%;
    width: 75%;
    /* border: solid 2px #ff0000; */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.aboutDiv{
    position: relative;
    color: #5b58ff;
    width: 50%;
    margin: 0;
    /* border: solid 2px #a6ff00; */
    display: flex;
    flex-direction: column;  
    align-items: center;    
}
#avatar{
    background-size:contain;
    width: 115px;
    height: 115px;
    border-radius: 100px;
}
.aboutEnable{
    display: flex;
}
.aboutDisable{
    display: none;
}
.aboutDiv *{
    margin: 0;
    padding: 0;
}
.aboutDiv h2,p{
    color: black;
    margin-top: 27px;
}
.aboutDiv h2{
    font-family: "Forum", 'Times New Roman', Times, serif;
    font-weight: 200;
    font-size: 36px;
}
.aboutDiv p{
    font-family: "PT Sans", sans-serif;
    font-size: 16px;
    margin-top: 10px;
}
.aboutDiv div{
    margin: 0;
    width: 300px;
    height: 47px;
    background: none;
    border-radius: 7px;
    border: solid 1px #000;
    font-size: 16px;
    font-family: "PT Sans", sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
#phone{
    font-size: 30px;
}
#email{
    margin-bottom: 20px;
}
#phone a{
    color: #000;
    transition: 0.2s;
}
#phone a:hover{
    color: #797979;
}
.contacts{
    transition: 0.3s;
}
.aboutDiv .contacts:hover{
    cursor: pointer;
    background: #000;
    color: white;
}
.aboutDiv .contacts a{
    color: #000;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.aboutDiv .contacts:hover a{
    color: white;
}
button.more-button{
    margin: 0;
    width: 300px;
    height: 47px;
    background: none;
    border-radius: 7px;
    border: solid 1px #000;
    font-size: 16px;
    font-family: "PT Sans", sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background: #000;
    transition: 0.3s;
}
button.more-button:hover{
    background: white;
    cursor: pointer;
    color: #000;
}
@media (max-width: 480px){
    .aboutDiv{
        width: 80%;
    }
}