* {
    margin: 0;
    padding: 0;
}

main {
    position: relative;
    height: 100vh;
    width: 100%;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
}

#text_container {
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    line-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    line-height: 30px;
}

#seraphin {
    color: rgb(255, 81, 0);
}

#contactBtn {
    text-decoration: none;
    color: #fff;
    padding: 10px;
    border: 1px solid #fff;
    display: inline-block;
    border-radius: 5px;
}

#logo {
    height: 40px;
    width: 40px;
    border: 0;
}

#link {
    display: inline-block;
    margin-left: 10px;
    margin-top: 10px;
}

#bonjour {
    font-size: 3em;
}

#container {
    position: relative;
    height: 80vh;
    width: 70%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}

#img_container {
    position: relative;
    height: 100%;
    width: 100%;
}

#img {
    height: 100%;
    width: 95%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(/images/IMG-20220314-WA0016.jpg);
    border-radius: 10px;
}

@media screen and (max-width:950px) {
    #container {
        height: 50vh;
        width: 90%;
    }
    #img_container {
        position: relative;
        height: 100%;
        width: 100%;
    }
    #img {
        height: 80%;
        width: 95%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        background-image: url(/images/IMG-20220314-WA0016.jpg);
        border-radius: 10px;
    }
}

@media screen and (max-width:600px) {
    #container {
        position: relative;
        height: 90vh;
        width: 90%;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: .6fr 1fr;
    }
    #img_container {
        height: 100%;
        width: 100%;
    }
    #img {
        height: 100%;
        width: 100%;
    }
    #text_container {
        color: #fff;
        font-family: 'Times New Roman', Times, serif;
        line-height: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}