/* Import custom font */
@font-face {
    font-family: 'Chaney';
    src: url('chaney-ultraextended-webfont.ttf') format('truetype');
}

/* General body and html styling */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
    font-family: 'Chaney', sans-serif; /* Using the custom font */
    overflow-y: scroll; /* Enable scrolling */
    overflow-x: hidden;
}

* {
    transition: .3s linear all;
}

/* Fullscreen for both screens */
.screen {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #1e1e1e; /* Consistent background for all screens */
}

/* Logo container */
.logo {
    width: 60vw; /* Scale logo to 40% of the viewport width */
    height: auto; /* Maintain aspect ratio */
}

/* Second screen styling */
.coming-soon-screen {
    background-color: #1e1e1e; /* Same background color for consistency */
}

.coming-soon-screen h1 {
    width: 60vw; /* Set width of the h1 to 60vw */
    font-size: 8.75vw; /* Set font size responsive to viewport width */
    text-align: center;
    color: #f0f0f0; /* Light text color for contrast */
}

.coming-soon-screen h2 {
    width: 95vw; /* Set width of the h1 to 60vw */
    font-size: 5.75vw; /* Set font size responsive to viewport width */
    text-align: center;
    color: #f0f0f0; /* Light text color for contrast */
    margin-top:0;
}

.coming-soon-screen h2 > a {
    color: inherit;
    text-decoration: none;
    color: rgb(250, 74, 104);
}

.coming-soon-screen h2 > a:hover {
    color: rgb(248, 40, 75);
}

.coming-soon-screen h4 {
    width: 60vw; /* Set width of the h1 to 60vw */
    font-size: 3.4vw; /* Set font size responsive to viewport width */
    text-align: center;
    color: #c0bebe; /* Light text color for contrast */
    margin-bottom: 0;
}

/* Custom scrollbar styling */
body::-webkit-scrollbar {
    width: 8px; /* Make scrollbar thin */
}

body::-webkit-scrollbar-track {
    background: #1e1e1e; /* Match track background to theme */
}

body::-webkit-scrollbar-thumb {
    background-color: #555; /* Thumb color matching the theme */
    border-radius: 10px; /* Round scrollbar edges */
}

.projects {
    background-color: #1e1e1e;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    position: relative;
}

.projects h2 {
    font-size: 3.4vw;
    color: rgb(179, 179, 179);
}

.projects a {
    text-decoration: none;
    font-size: 8vw;
    color: rgb(250, 74, 104);
    display: block; /* Ensure each <a> tag occupies a full line */
}

.projects a:hover {
    color: rgb(248, 40, 75);
}

.rotated-container {
    display: inline-flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center align content */
    gap: 2px; /* Add space between the items */
}

.r90 {
    margin: 0;
    padding: 0;
}
