* {
    margin: 0px;
    padding: 0px;
}
body {
    overflow: auto;
    background: black;
}

#container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#change_language {
    display: flex;
    align-items: center;
    

    transition-duration: 0.2s;
}

#change_language:hover {
    transform: scale(1.1);
    cursor: pointer;
}

#info {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    opacity: 0.8;
    padding: 15px;
    box-sizing: border-box;
    z-index: 50;
    background: rgba(0, 0, 0, 0.5);

    animation-duration: 0.5s;
}

#btn_start {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20vh;
    color: white;
    transition-duration: 0.5s;
    cursor: pointer;
}

#btn_start:not(.clicked):hover {
    font-size: 30vh;
}

#btn_start.clicked {
    animation: clickAnimation 2s ease-in-out;
    animation-fill-mode: forwards;
}

#logo-name.clicked {
    animation: clickAnimation1 2s ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes clickAnimation {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(100);
        margin-top: 5000px;
        font-size: 30vh;
    }
}

@keyframes clickAnimation1 {
    0% {
        transform: scale(1);
    }
    100% {
        position: relative;
        z-index: -1;
        transform: scale(100);
        color: orange;
        background: orange;
    }
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* @keyframes ani {
    from {
        align-items: center;
    }
    to {
        align-items: start;
    }
} */

/* #logo-name.ani {
    animation: ani 0.5s ease-in-out;
    animation-fill-mode: forwards;
} */

#new-content {
    animation: fadeIn 0.5s ease forwards;
    min-height: 85vh; 
    display: flex;
    padding-left: 100px;
    padding-right: 100px;
    align-items: center;
}

#abtme {
    display: flex;
    justify-content: end;
}

/* #logo-name {
    
} */

#logo-name {
    font-size: 150;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    /* background-image: url("logo_png_cr.png"); */
    border-radius: 150px;
    position: relative; 
    z-index: 100;

    transition-duration: 0.5s;
}

#logo-name:not(.clicked):hover {
    cursor:pointer;
    background-color: orange;
    width: 300px;
    height: 300px;
}

#logo-name:active  {
    transform: scale(0.95);
}

#links {
    display: flex;
    justify-content: end;
    align-items: end;
    gap: 20px;
    filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.3));
    padding-right: 20px;
}

#links div {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

#links div:hover {
    /* min-width: 60px;
    min-height: 60px; */
    gap: 25px;
    transform: translateX(-5px) translateY(-10px) scale(1.2);
    cursor: pointer;
}

#abt {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
}


#all-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#new-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
}

#logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

#about-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    padding: 70px;
    box-sizing: border-box;
}

.about-left, .about-right {
    width: 45%;
}

.about-left h2 {
    padding-left: 100px;
}

.about-right h2 {
    padding-right: 200px;
}

.about-left {
    text-align: left;
}

.about-right {
    text-align: right;
}

.about-left h2, .about-right h2 {
    font-size: 2rem;
    margin: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.about-left h2:hover, .about-right h2:hover {
    opacity: 1;
    cursor: pointer;
}

#textabtword {
    max-width: 600px;
    line-height: 1.6;
    word-spacing: 0.2em;
    font-size: 20px;
    font-weight: 100;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

#textabtme {
    text-align: left;
    max-width:  1000px;
    line-height: 1.6;
    padding-left: 200px;
    word-spacing: 0.2em;
    font-size: 20px;
    font-weight: 100;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

#switchTheme {
    transition: transform 0.5s ease;
}

#switchTheme:hover {
    transform: scale(1.2);
    transform: rotate(10deg);
    cursor: pointer;
}

#textabtword span {
    font-weight: 1000;
}

#textabtme span {
    font-weight: 1000;
}

#logoabt {
    transition: transform 5s ease-in-out;
    filter: drop-shadow(0 20px 10px rgba(0, 0, 0, 0.3));
}

#logoabt:hover {
    transform: rotate(360deg);
    cursor: grabbing;
}

@media (max-width: 768px) {
    #btn_start {
        font-size: 100px;
    }
    
    #info {
        position: absolute;
        float: left;
    }
    #logo-name {
        font-size: 50;
        width: 30px;
        height: 30px;
        background-color: orange;
    }
    #new-content div h1 {
        font-size: 10;
    }
    #new-content {
        flex-direction: column;
    }
    #logo-name h1 {
        font-size: 10px;
    }
    #links {
        display: fixed;
    }
}
@media (max-width: 908px) {
    #info {
        position: absolute;
        float: left;
    }
    #logo-name {
        font-size: 50;
        width: 30px;
        height: 30px;
        background-color: orange;
    }
    #logo-name:hover {
        font-size: 50;
        width: 30px;
        height: 30px;
        background-color: orange;
    }
}


@media (max-width: 1208px) { 
    body {
        overflow-y: auto !important;
        height: auto !important;
    }
    #all-content {
        padding-top: 120px;
    }
    
    #new-content {
        padding: 20px 15px !important;
        min-height: auto;
    }
    
    #logo-container {
        position: relative;
        margin: 20px auto;
    }
    
    #logo-name {
        width: 100px;
        height: 100px;
        font-size: 20px;
    }
    
    #logo-name h1 {
        font-size: 20px;
    }
    
    #about-section {
        flex-direction: column;
        padding: 0 !important;
        gap: 30px;
    }
    
    .about-left, .about-right {
        width: 100% !important;
    }
    
    .about-left h2, .about-right h2 {
        font-size: 24px;
        padding: 10px 0 !important;
        text-align: center;
    }
    
    #textabtword, #textabtme {
        font-size: 16px;
        padding: 15px !important;
        background: rgba(255,255,255,0.1);
        border-radius: 10px;
        max-width: 100%;
    }
    
    #logoabt {
        max-width: 200px;
        width: 100%;
        margin: 20px auto;
        display: block;
    }
    
    #links {
        display: flex;
        justify-content: center;
        padding: 20px;
        gap: 20px;
    }
    
    #links div img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 375px) {
    
    #logo-name {
        width: 80px;
        height: 80px;
    }
    
    #logo-name h1 {
        font-size: 16px;
    }
    
    .about-left h2, .about-right h2 {
        font-size: 20px;
    }
    
    #textabtword, #textabtme {
        font-size: 14px;
        padding: 12px !important;
    }
    
    #logoabt {
        max-width: 150px;
    }
    
    #links {
        padding: 15px;
        gap: 15px;
    }
    
    #links div img {
        width: 35px;
        height: 35px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {  
    #about-section {
        padding: 40px !important;
    }
    
    .about-left, .about-right {
        width: 48% !important;
    }
    
    #textabtword, #textabtme {
        font-size: 18px;
    }
    
    #logoabt {
        max-width: 300px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    #info {
        height: 40px;
        padding: 5px;
    }
    
    #container {
        height: calc(100vh - 50px);
        margin-top: 50px;
    }
    
    #about-section {
        flex-direction: row;
        gap: 20px;
    }
    
    .about-left, .about-right {
        width: 48% !important;
    }
    
    #textabtword, #textabtme {
        font-size: 14px;
        max-height: 200px;
        overflow-y: auto;
    }
}

@media (max-width: 1208px) {
    #new-content {
        flex-direction: column;
        padding: 0 !important;
    }
    
    #logo-container {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        order: 3; 
        margin: 30px auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    #logo-name {
        width: 150px;
        height: 150px;
        background: orange;
    }

    #logo-name:hover {
        width: 150px;
        height: 150px;
        background: orange;
    }
    
    #about-section {
        order: 1; 
        width: 100%;
        padding: 20px 15px !important;
    }
    
    #links {
        order: 4; 
        margin-top: 0;
    }
}

@media (max-width: 375px) {
    #logo-container {
        margin: 20px auto;
    }
}

* {
    transition: background-color 0.3s ease-in-out, 
                color 0.3s ease-in-out, 
                border 0.3s ease-in-out, 
                filter 0.3s ease-in-out,
                
}