* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    --primary-color: #e58a3c;
    --secondary-color: #f9de9b;
    --border-color: orange;
    --section-background-color: blanchedalmond;
    --header-background-color: blanchedalmond;
}

html {
    background: linear-gradient(
    0deg,
    var(--primary-color) 0%, 
    var(--primary-color) 50%, 
    var(--secondary-color) 100%);
}

body {
    font-family: Arial, sans-serif;
    width: 90%;
    height: 100%;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: var(--primary-color);
}

header {
    display: flex;
    margin-top: 20px;
    background-color: var(--header-background-color);
    border-radius: 8px;
    height: 10vh;
    align-items: center;
    justify-content: space-between;
}

.header-items{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-items * {
    margin-right: 20px;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid var(--border-color);
    position: relative;
    left: -15px;
}

.class1 {
    display: flex; 
    width: 100px; 
    height: 100px; 
    background-color: orange;
}

button{
    
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

section {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin: 20px 20px 20px 20px;
    border-left: 10px solid var(--border-color);
}

.content {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--section-background-color);
    transition: all .1s ease-in-out; 
}

.content:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 4px;
    margin-top: 10px;
}

.content-title-items {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    margin-left: 5px;
}

.icon {
    width: 25px;
    height: 25px;
}

.ark-steam-page {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ark-steam-page > div {
    max-width: 500px;
}

.steam-element {
    width: 100%;
    height: 200px;
    aspect-ratio: 646 / 190;
    border: none;
    display: block;
}

.half-width {
    width: 48%;
}

.row {
    display: flex;
    justify-content: space-between;
}

.row .content {
    align-self: flex-start;
}


@media (max-width: 768px) {
    body {
        width: 100%;
    }

    header {
        width: 95%;
        margin: 0 auto;
        flex-direction: column;
        height: auto;
        padding: 10px;
        font-size: 0.9rem;
    }

    .header-items {
        justify-content: center;
        margin-top: 10px;
    }

    section {
        margin: 10px;
    }

    .content > div{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .content > iframe {
        display: none;
    }

    .content-image {
        max-width: 100%;
        height: auto;
    }

    .row {
        flex-direction: column;
    }

    .half-width {
        width: 94%;
        margin-bottom: 20px;
    }

    .ark-steam-page {
        flex-direction: column;
    }
    .steam-element {
        aspect-ratio: auto;
        height: 200px;
    }
    .steam-element h1 {
        font-size: .1rem;
    }

    footer {
        text-align: center;
        padding: 10px;
        font-size: 0.9rem;
    }
}
