/*Fonts*/

.roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

body {
    background-color: #080808;
}

a {
    text-decoration: none;
}

#container {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#left {
    height: 600px;
    width: 35%;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#right {
    height: 600px;
    width: 35%;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#rkLogo {
    max-width: 100%;
}

#animationContainer {
    max-width: 100%;
}

#content {
    width: 90%;
    padding: 10px;
}

h1 {
    color: #ddbb5b;
    font-family: 'Roboto';
    font-weight: 700;
    font-style: normal;
    font-size: 3.225vw;
    letter-spacing: 1.5px;
}

p {
    color: #b2b2b2;
    font-family: 'Roboto';
    font-weight: 300;
    font-style: normal;
    font-size: 1.1vw;
    line-height: 1.25vw;
    letter-spacing: 1px;
}

p span {
    color: #ddbb5b;
    font-family: 'Roboto';
    font-weight: 300;
    font-style: normal;
    font-size: 1.1vw;
}

#tagline {
    margin-top: 10px;
}

#contentText {
    margin-top: 40px;
}

#closing {
    margin-top: 40px;
}

#closing p {
    font-size: 1vw;
}

#links {
    width: 100%;
    height: 62px;
    margin-top: 40px;
    display: flex;
}

#socialLinksContainer {
    width: 50%;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: right;
}

#buttonContainer {
    width: 50%;
    display: flex;
    align-items: center;
}

#contactButton {}

#contactButton {
    width: 194px;
    height: 58px;
    border: solid 2px #ddbb5b;
    border-radius: 29px;
    -webkit-transition: all 30ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contactButton p {
    color: #ddbb5b;
    font-family: 'Roboto';
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
    -webkit-transition: all 30ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

#contactButton:hover {
    cursor: pointer;
    background-color: #ddbb5b;
    -webkit-transition: all 30ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

#contactButton:hover p {
    color: #0c0c0c;
    -webkit-transition: all 30ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.mainSocials {
    display: flex;
    flex-direction: row-reverse;
}

.mainSocials li:nth-child(4),
.mainSocials li:nth-child(3),
.mainSocials li:nth-child(2) {
    margin-right: 10px;
}

.mainSocials:nth-child(1) {}

.socialLinks {
    height: 45px;
    width: 45px;
    -webkit-transition: all 30ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.socialLinks:hover {
    opacity: .3;
    -webkit-transition: all 30ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

@media only screen and (max-width: 1400px) {
    .socialLinks {
        width: 35px;
        height: 35px;
    }
    #contactButton {
        width: 140px;
        height: 45px;
    }
    #contactButton p {
        font-size: 18px;
    }
    h1 {
        font-size: 38px;
    }
    p {
        font-size: 16px;
        line-height: 23px;
    }
    #closing p {
        font-size: 14px;
    }
    p span {
        font-size: 16px;
    }
}

@media only screen and (max-width: 1038px) {
    #container {
        flex-direction: column-reverse;
        height: 100%;
    }
    #right {
        width: 30%;
        min-width: 200px;
        height: auto;
        margin-top: 50px;
        margin-bottom: -20px;
    }
    #right img {
        width: 100%;
    }
    #animationContainer {
        width: 100%;
    }
    #left {
        width: 100%;
    }
}

@media only screen and (max-width: 360px) {
    #links {
        flex-direction: column;
    }
    #buttonContainer {
        width: 100%;
    }
    #socialLinksContainer {
        width: 100%;
        margin-top: 45px;
        margin-bottom: 45px;
        justify-content: left;
    }
    #socialLinksContainer ul li {
        width: 45px;
        height: 45px;
    }
}