* {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    
    
    scroll-behavior: smooth;
    }

    header {
        font-size: 50px;
        width: 100%;
        height: 70px;
    
        display: flex;
        justify-content: space-between;
        align-items: center;
    
        position: fixed;
        z-index: 100;
    
        background-color: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(12px);
    
        padding: 0 40px;
        border-bottom: 1px solid rgba(255,255,255,0.5);
        opacity: 0.8;
    }

    .site-title {
        font-size: 20px;
        font-weight: bold;
        height: 35px;
        color: #333333;
        padding: 16px;
    }
     
    .site-title:hover {
        text-decoration: underline;
        color: black;
        opacity: 1.0;
    }
    

    html {
        background-color:rgb(139, 236, 241);
        padding: 0px;
    }
    
    body {
        margin: 0px 50px;
        background-color:rgb(66, 139, 188);
    }

    .wrapper {
        font-size: 50px;
        color: #333333;

    }


    section {
        padding-top: 160px;
    }
    section h2.section-title {
        font-family: "Lobster Two", cursive;
        font-size: 50px;
    
        width: fit-content;
    
        margin-bottom: 40px;
        margin-left: auto;
        margin-right: auto;
    }
    section h2.section-title::before,
    section h2.section-title::after {
        content: " - ";
    }
    section .container {
        max-width: 1024px;
        width: calc(100% - 40px);
    
        margin-left: auto;
        margin-right: auto;
    }

   

    
    .profile .container {
        display: flex;
        align-items: center;
        color: white;
    }
    .profile .container .profile-image {
        width: 300px;
        height: 300px;
    
        object-fit: cover;
        object-position: 59% 100%;
    
        border-radius: 50%;
    }
    .profile .container .profile-text {
        padding-left: 20px;
        margin-left: 0px;
        margin-right: 15px;
        color: white;
        }

    .item {
        margin: 20px;
    }

    footer {
        background-color: #333333;
    color: #fff;
    text-align: center;
    padding: 160px;
    margin-top: 120px;
    font-size: 50px;
    }