body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #1B1B1B ;
}

.root{
    display: flex;
    flex-direction: column;
    height: calc(100vh - 40px);
    width: calc(100vw - 10%);
    padding: 1% 5%;
    justify-content: space-between;
}


.root .header{
    display: flex;
    flex-direction: row;
    height: 40px;
    width: 100%;
    padding: 5px 0;
    justify-content: space-between;
}
.root .header .left{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.root .header .left p{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 12px;
    font-weight: bold;
}
.root .header .left img{
    height: 40px;
    width: 40px;
    border-radius: 10px;
    margin-top: 2px;
}
.root .header .right{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.root .header .right a{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    text-decoration: none;
    margin-left: 20px;
}
.root .header .right a:hover{
    text-decoration: underline;
}

.infos{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.infos .content{
    display: flex;
    flex-direction: column;
    height: fit-content;
    width: 100%;
    align-items: center;
    padding-bottom: 30px;
}
.content img{
    height: auto;
    width: 200px;
    border-radius: 50%;
    align-self: center;
    margin-top: 30px;
}
.content h1{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 36px;
    margin: 5px 0 10px 0;
    font-weight: bold;
}
.content p{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 19px;
    margin: 0;
    text-align: center;
    max-width: 600px;
}
.content .socialIconRow{
    margin-top: 25px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.content .socialIconRow a svg{
    height: 40px;
    width: 40px;
    fill: white;
    margin: 0 15px;
    transition: transform 0.2s;
}
.content .socialIconRow a svg:hover{
    transform: scale(1.2);
}

.footer{
    height: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.footer p{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    margin: 0;
}