.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;
}

.about_talk_link{
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    margin-top: 24px;
    padding: 0.95em 1.4em;
    border-radius: 999px;
    background: #1D6B69;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.about_talk_link::after{
    content: "→";
    font-size: 1.2em;
}
.about_talk_link:hover{
    opacity: 0.85;
    transform: translateY(2px);
}

.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;
}

.sns>div{
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    background: #d1d1d17a;
    backdrop-filter: blur(10px);
    border-width: 2px;
    border-style: solid;
    margin-top: 20px;
    box-sizing: border-box;
}
.sns>div>div{
    display: flex;
    align-items: center;
}
.sns_header img{
    width: 50px;
    height: 50px;
    border-radius: 20px;
    margin-right: 1em;
}
.sns_header{
    padding-bottom: 15px;
    border-bottom: solid 2px #5c5c5c;
}
.sns_body{
    padding-top: 15px;
}
.sns_body img{
    width: 80px;
    height: 80px;
    margin-right: 1em;
    border-radius: 20px;
    background-color: #ffffffc0;
}
.sns_body div{
    width: 100%;
}
.sns_body h4{
    font-size: 1.25em;
    margin: 0;
}
.sns_body p{
    margin: 5px 0 0 1em;
    font-size: 1em;
    color: #444;
}
.sns_body a{
    text-decoration: none;
    color: #fff;
    display: block;
    border-radius: 500px;
    margin: 20px 0;
    padding: 1em 2em;
    width: calc(100% - 4em);
    transition: all 0.2s ease;
}
.sns_body a:hover{
    opacity: 0.8;
    transform: translateY(2px);
}
.other_sns{
    display: block;
    margin: 20px 0;
    width: 100%;
    box-sizing: border-box;
    padding: 1em 2em;
    background-color: #1D6B69;
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.2s ease;
}
.other_sns:hover{
    opacity: 0.8;
    transform: translateY(2px);
}

.sites_links p{
    margin: 0;
    padding: 0;
}
.sites_links table code{
    color: #1D6B69;
    cursor: pointer;
}
.sites_links table code:hover{
    color: #639b9b;
}
.sites_links table{
    margin-bottom: 20px;
}

.sites_links_div{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;  
}
.sites_links a {
    display: block;
    width: 400px;
    max-width: 100%;
    text-decoration: none;
    background-image: url(../assets/tails.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 25px 0px 20px;
    text-align: center;
    transition: transform 0.2s ease, filter 0.2s ease;
    filter: drop-shadow(0 0 0 #00000000);
}
.sites_links a:hover {
  filter: drop-shadow(0 0 2px #1d6b689a);
  transform: translate(-2px, -2px);
}
.sites_links a img{
    width: 300px;
    height: auto;
    max-height: 100px;
}
.sites_links a h3{
    color: #fff;
    font-size: 1.15em;
}
.sites_links a p{
    color: #fff;
    font-size: 0.95em;
}
.sections{
    margin: 20px;
}
@media (min-width: 800px) {
    .sections{
        width: 800px;
        margin: 20px auto;
    }
}

@media (max-width: 550px) {
    .top_panel{
        bottom: 50px;
    }
    .top_panel img{
        border-radius: 20px;
        background-color: #9cc9c9;
        height: 100px;
        width: 100px;
        margin: 20px;
    }
    .top_panel div h1{
        font-size: 1.75em;
        margin-bottom: 0;
    }
    .top_panel div p{
        margin-top: 0;
        margin-left: 0.5em;
        font-size: 0.9em;
    }
}