.top {
    width: 100%;
    height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.top img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
}
.top_panel{
    position: absolute;
    bottom: 20px;
    left: 20px;
    align-items: center;
    display: flex;
    border-radius: 30px;
    background: #ffffff33;
    backdrop-filter: blur(10px);
    padding-right: 20px;
}
@media (min-width: 1400px) {
    .top_panel {
        left: calc(50svw - 700px);
    }
}
.top_panel img{
    border-radius: 20px;
    background-color: #9cc9c9;
    height: 200px;
    width: 200px;
    margin: 20px;
}
.top_panel div h1{
    font-size: 3em;
}
.top_panel div p{
    margin-left: 1em;
    font-size: 1.5em;
}

.aboutme table{
    font-size: 1.3em;
    border-collapse: collapse;
}

.aboutme table th,.aboutme table td{
    padding: 0.3em;
    text-align: left;
    border-bottom: 2px solid #0000006c;
}

tr:last-child td, tr:last-child th {
    border-bottom: none;
}

.sections{
    margin: 20px;
}
@media (min-width: 800px) {
    .sections{
        width: 800px;
        margin: 20px auto;
    }
}