/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: url('/spyroinvisible/hurricos-bg.jpg'); /* path to your image */
    background-repeat: repeat-y; /* this is the default, tiles both horizontally and vertically */
    background-size: 100%;
}

/* Container for 3 Columns */
.container {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Columns */
.column {
    flex: 1;
}

/* Left Column: Links */
.link-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    color: #222;
    transition: background-color 0.2s;
}

.link-box:hover {
    background-color: #e0e0e0;
}

.link-icon {
    width: 40px;
    height: 40px;
}

/* Middle Column: Profile */
.profile-box {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Right Column: Info Boxes */
.right-column {
    display: flex;
    flex-direction: column; /* stack children vertically */
    gap: 15px; /* space between boxes */
}
.info-box {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.info-box a {
    color: #0077cc;
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }

    .column {
        width: 100%;
    }
}