/*CORPO */
.corpo {
    margin-left: 10%;
    margin-right: 10%;
    border-style: solid;
    border-color: white;
    height: 100%;
    width: auto;
}

@media (max-width: 1200px) {
    .corpo {
    margin-left: 0%;
    margin-right: 0%;
    border-style: none;
    height: 100%;
    width: auto;
    }
}
/* TOP DIV */
.top-section {
    display: flex;
    align-items: flex-start;
    gap: 2%;
}

/* right column */
.right-side {
    display: flex;
    flex-direction: column;
}

/* quote + list in same row */
.top-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1200px) {
  .top-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
}

/* IMAGE */
.profile {
    padding: 15px;
    height: 300px;
    width: 300px;
}

@media (max-width: 1200px) {
  .profile {
    padding: 5px;
    height: 200px;
    width: 200px;
}
}

.navigator {
    text-align: right;
    margin-top: 12px;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    float: none; /* optional: prevents weird behavior */
    display: inline-block;
}

li a {
  display: block;
  text-align: center;
  padding: 10px;
}

.icons {
    width: 48px;
    height: 48px;
    background-color: white;
}
/*QUOTE*/
.quote {
    color: white;
    font-family: monospace;
    margin: 0;
    font-size: 16px;
    margin-top: 12px;
}

.title {
    color: white;
    margin-top: 10px;
    height: 25px;
    font-size: 70px;
    margin-left: 25px;
    text-decoration: underline;
}

.subtitle {
    color: white;
    font-family: monospace;
    font-size: 17px;
}