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

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

html {
    margin: 0;
    padding: 0;
    background-image: url(Rymden.jpg);
    background-repeat: auto;
    height: 100%;
    line-height: 1.5rem;
}

body {
    margin-top: 50px;
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
    color: white;
    border-radius: 0;
}
a {
    color: white;
    text-decoration: none;
    font-family:"Comfortaa", sans-serif;
    padding: 10px;
}

a:hover {
    color: rgb(107, 81, 255);
    text-decoration: none;
    font-family:"Comfortaa", sans-serif;
    padding: 10px;
}

.a_in{
    color: rgb(250, 217, 0);
    text-decoration: none;
    font-family:"Comfortaa", sans-serif;
    padding: 10px;
    
}

.container {
    display: grid;
    grid-template-columns: minmax(0, auto) 1fr;
    align-self: start;
}

header {
    border-bottom: solid rgb(62, 58, 82) 1px;
    text-align: center;
    color: white;
    background-image: radial-gradient(rgb(5, 0, 17), rgba(37, 33, 51, 0));
    background-image: linear-gradient(to top, rgba(65, 64, 105, 0.473) 2%, rgba(65, 64, 105, 0) );
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    font-family: 'Comfortaa', sans-serif;
}

menu {
    border-right: solid rgb(62, 58, 82) 1px;
    padding: 20px;
    height: 100vh;
    background-color:rgb(12, 9, 20) ;
    position: sticky;
    top: 0;
    align-self: start;
    
}

menu ul {
    list-style-type: none;
    display:flex;
    flex-direction: column;
    gap: 15px;
}

h1 {
    text-align: center;
}

.h1_s{
    text-align: center;
    margin-top: 50px;
    
}

.content {
    padding: 20px;
    min-width: 0;
    font-family:"Comfortaa", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    background-color:rgb(18, 13, 28);
}

.image-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}


.image-row img {
    width: auto;
    height: clamp(150px, 50vh, 500px);
    flex: 1 1 0;
    flex-grow: 1;
    object-fit: cover;
    border-radius: 0;
    min-width: 0;
    transition: transform 0.5s ease;
}

.image-row img:hover {
    object-fit: contain;
    transform: scale(1.05);
}