@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
html {
    --customgreen : rgb(0, 102, 102) ;
    --customyellow : rgb(255, 228, 174);
    --custommagenta : rgb(234, 76, 137);

    --custom-groom-red : rgb(139, 06, 07);
}

body {
    font-size: 16px;
    margin: auto;
    width: 100%;
    background-color: var(--customyellow);
}

a {
    text-decoration: none;
    color: var(--customgreen);
}


#logo {
    width: 200px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}


h1, h2, h3 {
    font-family: "Josefin Sans", sans-serif;
    color: var(--customgreen);
    margin: 0;
    padding: 3%;
}


header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    background-color: white;
    width: 100%;
    /*margin: auto;*/

    min-width: 0;

    border-bottom: solid var(--customgreen);
     /*padding: 10px 20px;*/
}

#header-brand {
    min-width: 0;
}


#hero {
    position: relative;
}
.content {
    margin-left: auto;
    margin-top: 3em;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    position: absolute;
    text-align: center;
}

.link-hover:hover {
    transition-property: font-size;
    transition-property: color;
    transition-duration: 1s;
    font-size: 2.5rem;
    color: var(--custommagenta);
}

.link-hover-font-awesome:hover {
    transition-duration: 1s;
    transform: scale(1.2);
    color: var(--custommagenta);
}


#groom-logo {
    background: var(--custom-groom-red);
    padding: 10px;
}

.socialMedia {
    margin-left: auto;
    margin-top: 1em;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    /*align-items: center;*/
    position: relative;
    text-align: center;
}

.ico {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    /*display: inline-block;*/
    text-decoration: none;
    width:100%;
    text-align: center;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

    h1 {
        font-size: 1.4rem;
        display: flex;
    }

    #groom-logo {
        height: 50px;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
    }

    /* Size of fontawesome logos */
    .socialMedia {
        font-size: 2.5rem;
        padding-bottom: 2rem;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    #groom-logo {
        height: 75px;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
    }


    /* Size of fontawesome logos */
    .socialMedia {
        font-size: 2.5rem;
    }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    #groom-logo {
        height: 100px;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
    }


    /* Size of fontawesome logos */
    .socialMedia {
        font-size: 3rem;
    }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    #groom-logo {
        height: 125px;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
    }


    /* Size of fontawesome logos */
    .socialMedia {
        font-size: 4rem;
    }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

    .main {
        width: 83%;
        margin: auto;
        z-index: 0;
    }

    header a {
        display: flex;
        padding: 0  2em 0 2em ;
        font-size: 1.3em;
    }

    h1 {
        font-size: 3rem;
        display: flex;
    }

    h2 {

        font-size: 2.5rem;

    }
    h3 {
        font-size: 2rem;
        vertical-align: center;
    }

    .ico {
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        display: inline-block;
        text-decoration: none;
        width:100%;
        text-align: center;
    }


    #groom-logo {
        height: 150px;
        background: var(--custom-groom-red);
        padding: 10px;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
    }

    /* Size of fontawesome logos */
    .socialMedia {
        font-size: 5rem;
        padding-bottom: 2rem;
    }
}
