@font-face {
    font-family: CormorantGaramond;
    src: url('../fonts/Cormorant_Garamond/CormorantGaramond-Regular.ttf');
}

@font-face {
    font-family: Montserrat;
    src: url('../fonts/Montserrat/Montserrat-VariableFont_wght.ttf');
}

header{
    border: solid 0px red;
    width: 100%;
    position: relative;
}

header img{
    width: 100px;
    height: 100px;
}

header nav{
    position: absolute;
    bottom: 40px;
    right: 10px;
}

nav a:link{
    border: solid 0px black;
    color: black;
    font-family: Montserrat;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    margin-inline: 30px;
    margin-right: 100px;
}

nav a:visited{
    color: black;
}

nav a:focus{
    text-decoration: underline;
}

nav a:hover{
    text-decoration: underline;
}

nav a:active{
    color: black;
}

#mainArea{
    border: solid 0px orchid;
    margin: 0 auto;
    width: 85%;
    padding: 10px;

    font-family: CormorantGaramond;
    text-align: center;
    min-height: 75vh;
}

footer{
    border: solid 0px black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    bottom: 0;
}

#socialMedia{
    flex: 1;
}

#socialMedia img{
    margin: 5px;
    height: 18px;
    width: 18px;
}

#socialMedia a:link{
    text-decoration: none;
}

body{
    background-color: #FAFAFB;
}

#mainArea table{
    /* border: solid 2px rgba(0,0,0,.05); */
    border-radius: 10px;
    margin: auto;
    text-align: left;
    background-color: white;
    padding: 10px;
}

/*WELCOME PAGE*/
#name{
    margin-top: 100px;
    margin-bottom: 100px;
    padding-top: 100px;
    padding-bottom: 0px;
    display: flex-row;
}

#name img{
    border: solid 0px black;
    max-height: 180px;
    max-width: 50%;
    flex: 1;
}

#a{
    position: relative;
    left: 60px;
    top: 15px;
}

#m{
    position: relative;
    left: 20px;
    top: 10px;
}

#a2{
    position: relative;
}

#n{
    position: relative;
    right: 10px;
}

#d{
    position: relative;
    right: 20px;
    top: -30px;
}

#a3{
    position: relative;
    right: 50px;
    top: 30px;
}

#enterBtn{
    border: none;
    background-color: #FAFAFB;
    font-size: 20px;
    font-family: CoromontGaramond;
    text-decoration: none;
    color: black;
}

#enterBtn:hover, #enterBtn:active{
    text-decoration: none;
    color: lightpink;
}

#enterBtn:visited{
    color: black;
}

/*HOME*/
#mainPicture img{
    border-radius: 10px;
    width: 100%;
}

.mainImgFrame{
    border-radius: 5px;
}

#mainArea .row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

#mainArea .column {
    flex: 45%;
    padding: 0 4px;
}
  
#mainArea .column img {
    margin-top: 8px;
    vertical-align: middle;
}

#mainArea a{
    color: black;
    text-decoration: none;
}

#mainArea a:hover{
    color: darkgrey;
    text-decoration: underline;
}

#mainArea a:active{
    color: darkgrey;
    text-decoration: underline;
}

#mainArea a:visited{
    color: black;
    text-decoration: none;
}

#banner{
    width : 100vw;
    height : 200px;
    background : rgba(0, 0, 0, 0.8);

    position : fixed;
    z-index : 1;
    bottom : 0px;
    right : 0px;

    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}

#closeBtn{
    position : absolute;
    top : 20px;
    right : 20px;
    cursor : pointer;
}

#banner p{
    margin-top: 50px;
    color:#FAFAFB;
}

/*ABOUT*/
#mainArea #aboutImg{
    object-fit: contain;
    overflow: none;
    padding-left: 15px;
}

/*CONTACT*/
#contactTable{
    padding: 10px;
}

#contactTable a{
    color: black;
    text-decoration: none;
}

#contactTable a:hover{
    color: black;
    text-decoration: none;
}

#contactTable a:visited{
    color: black;
    text-decoration: none;
}