h1,
h2,
h3,
h4,
h5,
h6 {
    color: #FFCC66;
    /* Hover : #FF9966*/
    font-family: 'slabo_13px', 'lato', sans-serif;
}

body {
    background-color: #21242c;
    font: 18px 'slabo', sans-serif;
    color: #8e92a6;
}

li {
    list-style-type: none;
}

#main {
    width: 50em;
    position: relative;
    margin: auto;
}

#main h1 {
    text-align: center;
}

img {
    height: 30em;
}

#content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#text {
    margin-left: 30px;
    text-align: center;
}

.button {
    border: 1px solid;
    border-color: #FFCC66;
    border-radius: 10px;
    color: #FFCC66;
    padding: 10px 15px 10px 15px;
    text-decoration: none;
    background-color: #363d50;
}

.button:hover {
    border-color: #FF9966;
    color: #FF9966;
    background-color: transparent;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.links>li {
    margin: 15px 10px;
}

.social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 0;
}

.social>li {
    height: fit-content;
    width: fit-content;
}

.social>li>.button {
    padding: 30% 20%;
}

.linklist {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

@media all and (max-width: 1200px) {
    #main {
        width: 100%;
    }

    #content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    body {
        font: 21px 'slabo', sans-serif;
    }

    .linklist{
        flex-direction: column;
        gap:10px;
        margin-bottom: 30px;
    }

    #text{
        margin:0px;
    }

    .social{
        margin-bottom: 5em;
    }
}