@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #1a1a1d;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    box-sizing: border-box;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 40px 20px 40px;
    text-align: center;
    max-width: 1200px;
}

.name {
    color: #c3073f;
    font-size: 90px;
    font-weight: bold;
    margin: 10px 0 10px 0;
    text-shadow: 2px 2px 10px rgba(195, 7, 63, 0.3);
}

.about {
    color: rgb(207, 159, 36);
    font-size: 20px;
    line-height: 1.5;
    margin-top: 0;
}

.about a {
    color: #c3073f;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.about a:hover {
    color: #ffd369;
    transform: scale(1.05);
}

li::marker {
    color: rgb(207, 159, 36);
}

.back-link-container {
    margin-top: 40px;
}

.back-link-container a {
    color: #c3073f;
    font-weight: bold;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.back-link-container a:hover {
    color: #ffd369;
    transform: scale(1.05);
}

/* Flash Message Styles */
.flash-messages {
    width: 100%;
    max-width: 1200px;
    padding: 0;
    margin-bottom: 20px;
}

.flash {
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 18px;
    text-align: center;
    border: 2px solid;
}

.flash.success {
    background-color: #1b4b38;
    border-color: #28a745;
    color: #d4edda;
}

.flash.danger {
    background-color: #5a2d2d;
    border-color: #dc3545;
    color: #f8d7da;
}

/* For Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #1a1a1d;
}

::-webkit-scrollbar-thumb {
  background-color: #c3073f;
  border-radius: 20px;
  border: 3px solid #1a1a1d;
}

@media (max-width: 768px) {
    .name {
        font-size: 60px;
    }

    .container {
        padding: 40px 20px 20px 20px;
    }
}
