* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    color: #a0d2d2;
}

.container {
    background-color: #19516b;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: #1f6484;
    padding: 10px 50px;
    box-shadow: 0 3px 10px #000;
    display: flex;
    justify-content: space-between;
}

.socials a img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.main {
    margin-top: 50px;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    overflow-y: auto;
}

.photo {
    display: flex;
    justify-content: center;
    margin-right: 50px;
}

.profile-img {
    width: 427px;
    height: 542px;
    border-radius: 30px;
}

.content {
    display: flex;
    width: 33%;
}