html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background-color: #111111; 
    color: white;
    padding: 18px;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 300;
}

.content {
    margin: 100px auto;
    width: 50%;
    height: 50%;

}

.border {
    border: 3px solid #222222;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

select {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 300;
}

a {
    color:#ffffff;
    background-color: #222222;
    padding:4px 8px 4px 8px;
    text-decoration: none;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    transition-duration: 100ms;
}

.preview {
    width: 100%;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-position: center;
    background-size: cover;
}

.preview.light {
    background-image: linear-gradient(-45deg, #ffffff 0%, #cccccc 100%);
}
.preview.dark {
    background-image: linear-gradient(-45deg, #333333 0%, #000000 100%)
}
.preview.image {
    background-image: url(https://source.unsplash.com/400x400?dark);
}

.previewImage {
    max-width: 15rem;
    max-height: 4rem;
}

a:hover {
    color:#ffffff;
    background-color: #333333;
}

.buttoncenter {
    display: flex;
    align-content: flex-start;
    align-items: center;
}

.buttonsFlex {
    display: flex;
    gap: 5px;
}


select {
    color:#ffffff;
    background-color: #333333;
    border-radius: 4px;
    border: none;
    font-size: 12pt;
}

h1 {
    font-weight: 700;
}

.buttonIcon {
    height: 14px;
    color:#ffffff;
    margin-right: 4px;
}
