/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0f34fc;
    color: #0A0A0A;
    font-family: 'Courier New', Courier, monospace;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

h1 {
    font-size: 5rem;
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
}

.subtext {
    margin-top: 29px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.subsubtext{
    margin-top: 88px;
    color: #fff
}

.cls-1 {
    fill: #fff;
    transition: opacity 0.1s linear; 
    transform-origin: center; 
}

.cls-1:hover {
    opacity: 0.5;
}

.logo.solo {
    width: 80px;
    transition: transform 0.1s ease-in-out;
}

.logo.solo:hover {
    transform: scale(1.05); 
}

/* Image - Links */
.button-container {
    display: flex;
    text-align: center;
    gap: 23px;
    margin-top: 48px;
}

.button-link {
    max-height: 8vh;
    transition: opacity 0.1s linear; 
}

.button-link:hover {
    background-color: #0f34fc;
    opacity: 0.5;
}

.button-link-on-blue {
    max-height: 8vh;
    margin-top: 110px;
    color: #f9b05b;
    opacity: 1.0;
    transition: color 0.1s linear; 
}

.button-link-on-blue:hover {
    max-height: 8vh;
    color: #fff;
    
    transition: color 0.1s linear; 
}


/* Animation */
@keyframes jump-and-roll {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    10% {
        transform: translateY(-50px);
    }
    20% {
        transform: translateY(0);
    }
    30% {
        transform: translateX(0) rotate(0deg);
    }
    100% {
        transform: translateX(120vw) rotate(720deg);
    }
}

.roll-animation {
    animation: jump-and-roll 1.5s ease-in-out forwards;
}

/* Authentification Section */
.oauth-section{
    text-align: center;
    background-color: white;
    margin: 6px;
    padding: 16px;
    border-radius: 21px;
}
/* About Style */
.about_text {
    color: white;
    text-align: center;
    margin: 30px;
    max-width: 800px;
  }

.about_text p {
margin-bottom: 30px;
}

.about_text ul {
padding: 0;
margin: 10;
text-align: left;
}

.about_text ul li {
margin: 5px 0;
margin-bottom: 30px;
}


a {
    text-decoration: none; 
    font-weight: bold; 
    transition: color 0.3s, text-shadow 0.3s; 
  }

a:hover {
    color: #9bb9ff;
    text-shadow: 0px 0px 10px #9bb9ff; 
  }